Developer forums (C::B DEVELOPMENT STRICTLY!) > Development

build bot in the github, I see one nice project

<< < (8/26) > >>

ollydbg:

--- Quote from: stahta01 on August 27, 2024, 05:49:40 pm ---
You might try the normal make like this.


--- Code: ---MSYS2_ARG_CONV_EXCL=* make
--- End code ---

NOTE: The "*" star might need double or single quotes around it. This option is supposed to turn off file handling magic.

See https://www.msys2.org/docs/filesystem-paths/

Tim S.

--- End quote ---

Hi, Tim, nice finding!

But why do you think "normal make" is needed. I think mingw32-make can still be used if we "disable the file path handling magic".

stahta01:

--- Quote from: ollydbg on August 28, 2024, 04:32:13 am ---
--- Quote from: stahta01 on August 27, 2024, 05:49:40 pm ---
You might try the normal make like this.


--- Code: ---MSYS2_ARG_CONV_EXCL=* make
--- End code ---

NOTE: The "*" star might need double or single quotes around it. This option is supposed to turn off file handling magic.

See https://www.msys2.org/docs/filesystem-paths/

Tim S.

--- End quote ---

Hi, Tim, nice finding!

But why do you think "normal make" is needed. I think mingw32-make can still be used if we "disable the file path handling magic".

--- End quote ---

It depends, some things build better with one or the other of make commands and some build okay with both. Till it is tried I see no pattern [useful to predict which will happen].

Tim S.

Grit Clef:
It was not successful when I tried
--- Code: ---MSYS2_ARG_CONV_EXCL=* mingw32-make
--- End code ---
. We can't use normal make, for certain reason(because those lines calling cmd /c will fail.) I always get failed using Windows' pure command line. Maybe we can only use the configure/make structure.
Edit: I'm seeing that cmd /c executed successfully when using normal make. It's hoped that the current action will be successful.
Still failed...

ollydbg:

--- Quote from: Grit Clef on August 31, 2024, 01:23:44 pm ---It was not successful when I tried
--- Code: ---MSYS2_ARG_CONV_EXCL=* mingw32-make
--- End code ---
. We can't use normal make, for certain reason(because those lines calling cmd /c will fail.) I always get failed using Windows' pure command line. Maybe we can only use the configure/make structure.
Edit: I'm seeing that cmd /c executed successfully when using normal make. It's hoped that the current action will be successful.

--- End quote ---

Maybe, you should try something like:


--- Code: ---MSYS2_ARG_CONV_EXCL='*' mingw32-make

--- End code ---

I haven't tried it, because I know nothing about how to debug a github action script.

Grit Clef:
No, it didn't work.

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version