Replies: 3 comments
-
It seems that the file that it's not found is the compiler |
Beta Was this translation helpful? Give feedback.
-
As far as I can remember the distribution that I was using is this one: https://github.com/skeeto/w64devkit |
Beta Was this translation helpful? Give feedback.
-
Mystery Solved! 1.You were definitely using Powershell or CMD to execute those commands.But the makefiles generated by premake5 are for bash, so there will be a lot of path format problems. Solution: Try use git-bash instead. 2. You were probably using mingw64 standard version, so there is no a "cc.exe" file.Solution: Just make a copy of "gcc.exe" and rename it to "cc.exe". 3. All the steps above done and worked, now you might face a SDL library missing problem.Solution: Download SDL2-devel-2.30.2-mingw.zip, and copy the "x86_64-w64-mingw32" folder and merge to "/mingw64/x86_64-w64-mingw32" |
Beta Was this translation helpful? Give feedback.
-
I am trying to compile SOIL2 with mingw64 in windows 11
I have installed premake5 and used the following commands:
and it occured errors as following:
I checked the file
../../src/SOIL2/SOIL2.c
, and this file existed. I have no idea about solving the problem. I really need your help, please.Beta Was this translation helpful? Give feedback.
All reactions