diff options
author | Sergei Poselenov <sposelenov@emcraft.com> | 2008-09-19 12:07:34 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-12-13 23:41:23 +0100 |
commit | 0e0c862efe7279e9609db74d758cd1b84c6c7209 (patch) | |
tree | 4314b52523273ee743ed22a334eb618b8f9d8962 /cpu/arm946es | |
parent | cd6734510a9ff0f41c4a73567d4080ea0033d2c1 (diff) | |
download | u-boot-imx-0e0c862efe7279e9609db74d758cd1b84c6c7209.zip u-boot-imx-0e0c862efe7279e9609db74d758cd1b84c6c7209.tar.gz u-boot-imx-0e0c862efe7279e9609db74d758cd1b84c6c7209.tar.bz2 |
Remove compiler warning: target CPU does not support interworking
This warning is issued by modern ARM-EABI GCC on non-thumb targets.
Signed-off-by: Vladimir Panfilov <pvr@emcraft.com>
Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
Diffstat (limited to 'cpu/arm946es')
-rw-r--r-- | cpu/arm946es/config.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpu/arm946es/config.mk b/cpu/arm946es/config.mk index f774c7e..6190e16 100644 --- a/cpu/arm946es/config.mk +++ b/cpu/arm946es/config.mk @@ -31,4 +31,5 @@ PLATFORM_CPPFLAGS += -march=armv4 # # ========================================================================= PLATFORM_CPPFLAGS +=$(call cc-option,-mapcs-32,-mabi=apcs-gnu) +PLATFORM_CPPFLAGS +=$(call cc-option,-mno-thumb-interwork,) PLATFORM_RELFLAGS +=$(call cc-option,-mshort-load-bytes,$(call cc-option,-malignment-traps,)) |