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/blackfin | |
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/blackfin')
-rw-r--r-- | arch/blackfin/config.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/blackfin/config.mk b/arch/blackfin/config.mk index ab117ca..0cba294 100644 --- a/arch/blackfin/config.mk +++ b/arch/blackfin/config.mk @@ -30,7 +30,8 @@ CONFIG_BFIN_BOOT_MODE := $(strip $(subst ",,$(CONFIG_BFIN_BOOT_MODE))) PLATFORM_RELFLAGS += -ffixed-P3 -fomit-frame-pointer -mno-fdpic PLATFORM_CPPFLAGS += -DCONFIG_BLACKFIN -LDFLAGS += --gc-sections -m elf32bfin +LDFLAGS_u-boot += --gc-sections +LDFLAGS += -m elf32bfin PLATFORM_RELFLAGS += -ffunction-sections -fdata-sections PLATFORM_CPPFLAGS += -DBFIN_CPU='"$(CONFIG_BFIN_CPU)"' |