The compiler argument -mno-apcs-frame has no meaning when using EABI as we

will use aapcs frames, not apcs frames.
This commit is contained in:
Andrew Turner 2013-03-16 03:57:46 +00:00
parent f8cd79f38b
commit 2ecc0d987b

View File

@ -44,7 +44,9 @@ CFLAGS += -mno-thumb-interwork
.endif
.if empty(DDB_ENABLED)
.if !defined(WITH_ARM_EABI)
CFLAGS += -mno-apcs-frame
.endif
.elif defined(WITH_ARM_EABI)
CFLAGS += -funwind-tables
.if ${COMPILER_TYPE} == "clang"