Use arm-none-eabi-cpp for modern.
This commit is contained in:
parent
d597c5c883
commit
11df2113d9
1 changed files with 6 additions and 0 deletions
6
Makefile
6
Makefile
|
@ -17,7 +17,13 @@ endif
|
|||
PREFIX := arm-none-eabi-
|
||||
OBJCOPY := $(PREFIX)objcopy
|
||||
AS := $(PREFIX)as
|
||||
|
||||
ifneq ($(MODERN),1)
|
||||
CPP := $(CC) -E
|
||||
else
|
||||
CPP := $(PREFIX)cpp
|
||||
endif
|
||||
|
||||
LD := $(PREFIX)ld
|
||||
|
||||
# note: the makefile must be set up so MODERNCC is never called
|
||||
|
|
Loading…
Reference in a new issue