diff options
author | Wolfgang Denk <wd@pollux.(none)> | 2005-12-01 02:15:07 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@pollux.(none)> | 2005-12-01 02:15:07 +0100 |
commit | c75eba3b4140187cd0d9bd8049f5df4c49b6889b (patch) | |
tree | a3ee0f61898fdac05b298b23e42b784d6fe0d5e1 /cpu/mips/config.mk | |
parent | 4a86d779ff0b2bf9690e50786dece5a689ba3345 (diff) | |
download | u-boot-imx-c75eba3b4140187cd0d9bd8049f5df4c49b6889b.zip u-boot-imx-c75eba3b4140187cd0d9bd8049f5df4c49b6889b.tar.gz u-boot-imx-c75eba3b4140187cd0d9bd8049f5df4c49b6889b.tar.bz2 |
Fix U-Boot compilation for MIPS boards using ELDK 4.0
Diffstat (limited to 'cpu/mips/config.mk')
-rw-r--r-- | cpu/mips/config.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/mips/config.mk b/cpu/mips/config.mk index fd10747..c357615 100644 --- a/cpu/mips/config.mk +++ b/cpu/mips/config.mk @@ -26,7 +26,7 @@ MIPSFLAGS=$(shell \ if [ "$v" -lt "14" ]; then \ echo "-mcpu=4kc"; \ else \ - echo "-march=4kc -mtune=4kc -Wa,-mips_allow_branch_to_undefined"; \ + echo "-march=4kc -mtune=4kc"; \ fi) ifneq (,$(findstring 4KCle,$(CROSS_COMPILE))) |