pret / pokeemerald

Decompilation of Pokémon Emerald
2.28k stars 2.55k forks source link

Minor toolchain fixes #2031

Closed GriffinRichards closed 1 month ago

GriffinRichards commented 1 month ago

Example -- given #include "foo.h" in parent.c where foo.h doesn't exist... before:

make: *** No rule to make target `src/foo.h', needed by `build/emerald/src/parent.o'.  Stop.

after:

src/parent.c:<line_num>:<col_num>: fatal error: foo.h: No such file or directory
    <line_num> | #include "foo.h"