You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
was working on building with msys2 yesterday and this is only the first pitfall
this can be solved by just adding a #include <assert.h> at the top locally for the time being (this file has cross platform support for both unix-likes using gcc and windows using fucking msvc for whatever reason, this is the only thing making it unable to work)
second potential pitfall is an out of memory error in another file that i don't remember its name rn
third pitfall is having to define multiple commands by hand in the make command because they dont have prefixes for some reason
fourth pitfall has to do with how files are stored in windows (\r\n vs \n) and it assuming it will always be in unix format
When I was building with MSYS2 on windows I was unable to continue building the sdl_win32 version due to a missing include for assert in epos.c.
To fix it on my end I just added the include for that header.
If the exact error is wanted it was this:
epos.c 17:5: warning: implicit declaration of function 'assert'
The text was updated successfully, but these errors were encountered: