mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-12 23:44:39 +00:00
Allow overriding CC for cross-compilation. (#262)
In the case of SDL2 cross-compilation, I had to make this change. FTE_TARGET=SDL2_arm and such don't work. If I override the compiler with something like: make CC=aarch64-linux-gnu-gcc then this particular line reverts it to gcc and calls the system compiler anyway. I'm not sure why this line needs to exist at all. I did the same for windres, because it might also make sense to override it with an i686-w64-mingw32-windres. Or potentially for the aarch64-w64-mingw32 gcc in future.
This commit is contained in:
parent
00a42c24c3
commit
7599872f9c
1 changed files with 2 additions and 2 deletions
|
@ -23,8 +23,8 @@
|
|||
#note: cross compiling will typically require 'make makelibs FTE_TARGET=mytarget', which avoids installing lots of extra system packages.
|
||||
|
||||
#
|
||||
CC=gcc
|
||||
WINDRES=windres
|
||||
CC?=gcc
|
||||
WINDRES?=windres
|
||||
STRIP?=strip
|
||||
|
||||
STRIPFLAGS=--strip-unneeded --remove-section=.comment
|
||||
|
|
Loading…
Reference in a new issue