mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-16 09:48:16 +00:00
1d3b97c94e
Introduce a new Makefile variable for passing LDFLAGS to standalone programs. Currently the variable CONFIG_STANDALONE_LOAD_ADDR is misued on some archs to pass a specific linker script. Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com> Reviewed-by: Tom Rini <trini@konsulko.com> Reviewed-by: Rick Chen <rick@andestech.com>
22 lines
623 B
Makefile
22 lines
623 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2000-2002
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# (C) Copyright 2011
|
|
# Shawn Lin, Andes Technology Corporation <nobuhiro@andestech.com>
|
|
# Macpaul Lin, Andes Technology Corporation <macpaul@andestech.com>
|
|
#
|
|
|
|
ifeq ($(CROSS_COMPILE),)
|
|
CROSS_COMPILE := nds32le-linux-
|
|
endif
|
|
|
|
CONFIG_STANDALONE_LOAD_ADDR = 0x300000
|
|
LDFLAGS_STANDALONE += -T $(srctree)/examples/standalone/nds32.lds
|
|
|
|
PLATFORM_RELFLAGS += -fno-common -mrelax
|
|
PLATFORM_RELFLAGS += -gdwarf-2
|
|
PLATFORM_CPPFLAGS += -D__nds32__ -G0 -ffixed-10 -fpie
|
|
|
|
LDFLAGS_u-boot = --gc-sections --relax -pie
|