-
-
Notifications
You must be signed in to change notification settings - Fork 621
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Generated make files are not compilable by MinGW #1156
Comments
#1111 might be of value to you? @tdesveauxPKFX would have a better idea than myself. |
Looks to me more an issue like #1103. |
I'm using alpha12 |
Nevermind, I noticed you are using the |
Yes it seems gmake2 action produces correct files! |
Steps:
Errors:
C:\Users\Slava\Documents\capto-sdk-cxx>mingw32-make CoreStatic clean
"==== Building CoreStatic (debug_x32) ===="
AssemblyTypes.cpp
Подпапка или файл obj\x32\Debug\CoreStatic уже существует.
CoreStatic.make:253: recipe for target 'obj/x32/Debug/CoreStatic/AssemblyTypes.o' failed
mingw32-make[1]: *** [obj/x32/Debug/CoreStatic/AssemblyTypes.o] Error 1
Makefile:40: recipe for target 'CoreStatic' failed
mingw32-make: *** [CoreStatic] Error 2
System message "Подпапка или файл obj\x32\Debug\CoreStatic уже существует." means that directory is already exist.
Apparently, instead of plain MKDIR (-p option is not supported on Windows) solution from there https://stackoverflow.com/questions/4165387/create-folder-with-batch-but-only-if-it-doesnt-already-exist should be used.
The text was updated successfully, but these errors were encountered: