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
/tool/imgfix.py uses windows line endings. This causes the make to fail because python3\r does not exist. Solved by fixing the lines endings in that python file.
The text was updated successfully, but these errors were encountered:
Ran into three issues I had to fix to get the rom to compile.
res folder
"End of file in comment; newline inserted" for multiple files in /core/res/
Solved by removing
--fatal-warnings
fromASFLAGS
in /core/Makefilegbalvns/core/Makefile
Line 38 in f4c1dd6
Incorrect Stat Command
The usage of
stat
to get the size of the GBA file for padding it out is incorrect, resulting in the following error:which comes from the following line:
gbalvns/core/Makefile
Line 73 in f4c1dd6
the correct command should be
stat -c%s $@
Line endings in python tool
/tool/imgfix.py
uses windows line endings. This causes themake
to fail becausepython3\r
does not exist. Solved by fixing the lines endings in that python file.The text was updated successfully, but these errors were encountered: