diff options
author | Remy Bohmer | 2008-12-04 22:25:57 +0100 |
---|---|---|
committer | Jean-Christophe PLAGNIOL-VILLARD | 2008-12-06 20:34:12 +0100 |
commit | 83ad179e2f0f625b88adb8ef5696709e46fb9077 (patch) | |
tree | f2e7b0a3458e28fc5128c3532800ca4ac9f9a69e /cpu/arm926ejs | |
parent | 89a7a87f084c657f8e32b513a77b50eca07e17ec (diff) |
Remove redundant armv4 flag from arm926ejs compile flags
Currently the arm926ejs tree has the armv4 option set during compilation.
This flag does not belong here because a arm926 CPU is always a armv5 CPU.
Signed-off-by: Remy Bohmer <linux@bohmer.net>
Diffstat (limited to 'cpu/arm926ejs')
-rw-r--r-- | cpu/arm926ejs/at91/config.mk | 1 | ||||
-rw-r--r-- | cpu/arm926ejs/config.mk | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/cpu/arm926ejs/at91/config.mk b/cpu/arm926ejs/at91/config.mk index 31491a843a9..06177e6c39c 100644 --- a/cpu/arm926ejs/at91/config.mk +++ b/cpu/arm926ejs/at91/config.mk @@ -1,3 +1,2 @@ -PLATFORM_CPPFLAGS += -march=armv5te PLATFORM_CPPFLAGS += $(call cc-option,-mtune=arm926ejs,) LDSCRIPT := $(SRCTREE)/cpu/arm926ejs/at91/u-boot.lds diff --git a/cpu/arm926ejs/config.mk b/cpu/arm926ejs/config.mk index 8db4adbe179..84b68ae9d6b 100644 --- a/cpu/arm926ejs/config.mk +++ b/cpu/arm926ejs/config.mk @@ -24,7 +24,7 @@ PLATFORM_RELFLAGS += -fno-strict-aliasing -fno-common -ffixed-r8 \ -msoft-float -PLATFORM_CPPFLAGS += -march=armv4 +PLATFORM_CPPFLAGS += -march=armv5te # ========================================================================= # # Supply options according to compiler version |