diff options
author | Rick Chen <rick@andestech.com> | 2019-01-15 11:07:54 +0800 |
---|---|---|
committer | Andes <uboot@andestech.com> | 2019-01-22 17:36:04 +0800 |
commit | e690148223cb0828d601f43703e7fc238d85884d (patch) | |
tree | 67fea7d8ade6992b9546c9e1bea7de17bfe88eef | |
parent | 9135858fb861d4aa0c8521442cc20932c1e2e097 (diff) | |
download | u-boot-e690148223cb0828d601f43703e7fc238d85884d.tar.gz u-boot-e690148223cb0828d601f43703e7fc238d85884d.tar.xz u-boot-e690148223cb0828d601f43703e7fc238d85884d.zip |
nds32: Fix boot fail issue when build with elf-mculib.
Add -mcmodel=large can let elf-mculib have
the same default behavior just like linux-glibc.
And it help to pass U-Boot booting sequence.
Signed-off-by: Rick Chen <rick@andestech.com>
Cc: Greentime Hu <greentime@andestech.com>
-rw-r--r-- | arch/nds32/config.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/nds32/config.mk b/arch/nds32/config.mk index 4e10de072e..a1c3371ddc 100644 --- a/arch/nds32/config.mk +++ b/arch/nds32/config.mk @@ -17,6 +17,6 @@ LDFLAGS_STANDALONE += -T $(srctree)/examples/standalone/nds32.lds PLATFORM_RELFLAGS += -fno-common -mrelax -mno-ext-fpu-dp -mfloat-abi=soft PLATFORM_RELFLAGS += -gdwarf-2 -PLATFORM_CPPFLAGS += -D__nds32__ -ffixed-10 -fpie +PLATFORM_CPPFLAGS += -D__nds32__ -ffixed-10 -fpie -mcmodel=large LDFLAGS_u-boot = --gc-sections --relax -pie --mabi=AABI |