diff options
author | Haiying Wang <Haiying.Wang@freescale.com> | 2011-02-22 16:38:05 -0500 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2011-03-22 23:32:06 +0100 |
commit | 6dc1eceb9c5f42216f1ba0e0ef538015b0aa10bc (patch) | |
tree | 68b8f0f3a430eefbdef343dd62d8c89eebcadb98 /arch/powerpc/config.mk | |
parent | c81c1222427f268d29ba999c82e2477c428e7bab (diff) | |
download | u-boot-imx-6dc1eceb9c5f42216f1ba0e0ef538015b0aa10bc.zip u-boot-imx-6dc1eceb9c5f42216f1ba0e0ef538015b0aa10bc.tar.gz u-boot-imx-6dc1eceb9c5f42216f1ba0e0ef538015b0aa10bc.tar.bz2 |
Introduce a new linker flag LDFLAGS_FINAL
commit 8aba9dceebb14144e07d19593111ee3a999c37fc
Divides variable of linker flags to LDFLAGS-u-boot and LDFLAGS
breaks the usage of --gc-section to build nand_spl. We still need linker option
--gc-section for every uboot image, not only the main one. LDFLAGS_FINAL passes
the --gc-sections to each uboot image.
To get the proper linker flags, we use LDFLAGS and LDFLAGS_FINAL to replace
PLATFORM_LDFLAGS in the Makefile of each nand_spl board.
Signed-off-by: Scott Wood <scottwood@freescale.com>
Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
Diffstat (limited to 'arch/powerpc/config.mk')
-rw-r--r-- | arch/powerpc/config.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/config.mk b/arch/powerpc/config.mk index 64191c7..31e4416 100644 --- a/arch/powerpc/config.mk +++ b/arch/powerpc/config.mk @@ -24,7 +24,7 @@ CROSS_COMPILE ?= ppc_8xx- STANDALONE_LOAD_ADDR = 0x40000 -LDFLAGS_u-boot = --gc-sections +LDFLAGS_FINAL += --gc-sections PLATFORM_RELFLAGS += -mrelocatable -ffunction-sections -fdata-sections PLATFORM_CPPFLAGS += -DCONFIG_PPC -D__powerpc__ PLATFORM_LDFLAGS += -n |