diff options
author | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2013-01-04 12:19:23 -0800 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2013-01-04 22:14:19 +0100 |
commit | 853f4698a8ef9366178b83b0c42a3f662dc45c95 (patch) | |
tree | c3b31fbc0367ad855b17860ec18b6c7a07f0b879 /src/arch | |
parent | 3a8badc26519cd900d4f01c87c212973a1aea00c (diff) |
ARMv7: Make ABI compatible to reference toolchain
Our reference toolchain uses -mabi=aapcs whereas we started
forcing -mabi=aapcs-linux. Drop this to prevent ABI incompatibility.
Also drop -fno-common since that's set in the top level Makefile.inc
already.
Change-Id: I4afdcf5da9a5d86c2f9e5de5c7d523ccd2f5f1e0
Signed-off-by: Stefan Reinauer <reinauer@google.com>
Reviewed-on: http://review.coreboot.org/2103
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/armv7/Makefile.inc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/arch/armv7/Makefile.inc b/src/arch/armv7/Makefile.inc index 9e57244e37..9bca71c1fd 100644 --- a/src/arch/armv7/Makefile.inc +++ b/src/arch/armv7/Makefile.inc @@ -139,9 +139,7 @@ endif # done CFLAGS += \ - -fno-common\ -ffixed-r8\ - -mabi=aapcs-linux\ -march=armv7-a\ -marm\ -mno-unaligned-access\ |