We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The resulting TIC-80 executables (i compile tic80, tic80-sokol, utils and players for test) depends on these dlls:
libwinpthread-1.dll libstdc++-6.dll libgcc_s_seh-1.dll
Solution? Statically link standard C library into executables.
What i did to solve my problem is adding this line in the beginning of the cmake line set(CMAKE_EXE_LINKER_FLAGS "-static")
set(CMAKE_EXE_LINKER_FLAGS "-static")
Please add this line in the cmake file or something similar so it would add C library statically no matter what.
The text was updated successfully, but these errors were encountered:
#1240: fixed mingw DLL dependencies
c3b5d8a
Fixed here c3b5d8a
Sorry, something went wrong.
nesbox
No branches or pull requests
The resulting TIC-80 executables (i compile tic80, tic80-sokol, utils and players for test) depends on these dlls:
libwinpthread-1.dll
libstdc++-6.dll
libgcc_s_seh-1.dll
Solution? Statically link standard C library into executables.
What i did to solve my problem is adding this line in the beginning of the cmake line
set(CMAKE_EXE_LINKER_FLAGS "-static")
Please add this line in the cmake file or something similar so it would add C library statically no matter what.
The text was updated successfully, but these errors were encountered: