Makefile line 86 uses the wrong variable for compiling
texadactyl opened this issue · 2 comments
texadactyl commented
This line 86:
$(CC) -o $@ -DFBUTILS_TEST -ggdb -O0 $< -lm
should be this:
$(HOST_COMPILER) -o $@ -DFBUTILS_TEST -ggdb -O0 $< -lm
cc: @David-McKenna
texadactyl commented
It looks like the other *.c compilations also need the same change.
texadactyl commented
I think that I was confused by the name HOST_COMPILER.