diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2018-09-16 22:35:29 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-09-25 21:50:34 -0400 |
commit | d8d81d4a5d0e5aaef5a005a357d3b9ed2b7cc4b2 (patch) | |
tree | 38b5672987a57c3409a9557c7b3e4edb096ce324 /arch/riscv | |
parent | 5bc11922f1f8e0bfb27e8e260c7971405535c257 (diff) | |
download | u-boot-d8d81d4a5d0e5aaef5a005a357d3b9ed2b7cc4b2.tar.gz u-boot-d8d81d4a5d0e5aaef5a005a357d3b9ed2b7cc4b2.tar.xz u-boot-d8d81d4a5d0e5aaef5a005a357d3b9ed2b7cc4b2.zip |
config.mk: Remove duplicated -fno-strict-aliasing
Now that we already disable the "strict-aliasing" globally, remove
the duplicates in the nds32/riscv/x86 arch-specific Makefiles.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Rick Chen <rick@andestech.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/riscv')
-rw-r--r-- | arch/riscv/config.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/riscv/config.mk b/arch/riscv/config.mk index 219e66683d..c0b3858edd 100644 --- a/arch/riscv/config.mk +++ b/arch/riscv/config.mk @@ -31,7 +31,7 @@ CONFIG_STANDALONE_LOAD_ADDR = 0x00000000 \ -T $(srctree)/examples/standalone/riscv.lds PLATFORM_CPPFLAGS += -ffixed-gp -fpic -PLATFORM_RELFLAGS += -fno-strict-aliasing -fno-common -gdwarf-2 -ffunction-sections +PLATFORM_RELFLAGS += -fno-common -gdwarf-2 -ffunction-sections LDFLAGS_u-boot += --gc-sections -static -pie EFI_CRT0 := crt0_riscv_efi.o |