diff options
author | Nobuhiro Iwamatsu <iwamatsu@nigauri.org> | 2011-01-06 10:23:54 +0900 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2011-01-25 22:22:30 +0100 |
commit | 8aba9dceebb14144e07d19593111ee3a999c37fc (patch) | |
tree | b6d60913bf0b5549f1cbc67aa4d7701bd0878ee0 /arch/i386 | |
parent | f8ea15f769773943050fa3ba444a5514066441d4 (diff) | |
download | u-boot-imx-8aba9dceebb14144e07d19593111ee3a999c37fc.zip u-boot-imx-8aba9dceebb14144e07d19593111ee3a999c37fc.tar.gz u-boot-imx-8aba9dceebb14144e07d19593111ee3a999c37fc.tar.bz2 |
Divides variable of linker flags to LDFLAGS-u-boot and LDFLAGS
Linker needs to use the proper endian/bfd flags even when doing partial linking.
LDFLAGS_u-boot sets linker option which is called it when U-boot is built
(u-boot final).
LDFLAGS sets necessary option by partial linking (use in cmd_link_o_target).
CC: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Diffstat (limited to 'arch/i386')
-rw-r--r-- | arch/i386/config.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/i386/config.mk b/arch/i386/config.mk index 8743f1a..3fb97c1 100644 --- a/arch/i386/config.mk +++ b/arch/i386/config.mk @@ -35,5 +35,6 @@ PLATFORM_CPPFLAGS += $(call cc-option, -fno-stack-protector) PLATFORM_CPPFLAGS += $(call cc-option, -mpreferred-stack-boundary=2) PLATFORM_CPPFLAGS += -DCONFIG_I386 -D__I386__ -LDFLAGS += --cref --gc-sections +LDFLAGS += --cref +LDFLAGS_u-boot += --gc-sections PLATFORM_RELFLAGS += -ffunction-sections |