mirror of https://github.com/pret/pokeemerald.git
Use arm-none-eabi-cpp for modern.
This commit is contained in:
parent
d597c5c883
commit
11df2113d9
6
Makefile
6
Makefile
|
@ -17,7 +17,13 @@ endif
|
||||||
PREFIX := arm-none-eabi-
|
PREFIX := arm-none-eabi-
|
||||||
OBJCOPY := $(PREFIX)objcopy
|
OBJCOPY := $(PREFIX)objcopy
|
||||||
AS := $(PREFIX)as
|
AS := $(PREFIX)as
|
||||||
|
|
||||||
|
ifneq ($(MODERN),1)
|
||||||
CPP := $(CC) -E
|
CPP := $(CC) -E
|
||||||
|
else
|
||||||
|
CPP := $(PREFIX)cpp
|
||||||
|
endif
|
||||||
|
|
||||||
LD := $(PREFIX)ld
|
LD := $(PREFIX)ld
|
||||||
|
|
||||||
# note: the makefile must be set up so MODERNCC is never called
|
# note: the makefile must be set up so MODERNCC is never called
|
||||||
|
|
Loading…
Reference in New Issue