summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorBunnaroath Sou <bsou@sifive.com>2019-03-18 12:49:20 -0700
committerBunnaroath Sou <bsou@sifive.com>2019-03-18 12:49:20 -0700
commit6695a994b01585ae3dce0e492de3c4e3feb2ae4f (patch)
tree27c338467535c69d5d1c418314d1d607838b1698 /scripts
parent30c143eb5445f47edb351ba54c84ff8285dc27a9 (diff)
Add link target options to tools and env
Diffstat (limited to 'scripts')
-rw-r--r--scripts/libmetal.mk2
-rw-r--r--scripts/standalone.mk6
2 files changed, 6 insertions, 2 deletions
diff --git a/scripts/libmetal.mk b/scripts/libmetal.mk
index b50c599..c45972a 100644
--- a/scripts/libmetal.mk
+++ b/scripts/libmetal.mk
@@ -3,7 +3,7 @@
# Compiles an instance of Metal targeted at $(TARGET)
#############################################################
METAL_SOURCE_PATH ?= freedom-metal
-METAL_LDSCRIPT = $(BSP_DIR)/metal.lds
+METAL_LDSCRIPT = $(BSP_DIR)/metal.$(LINK_TARGET).lds
METAL_HEADER = $(BSP_DIR)/metal.h
METAL_PREFIX = $(abspath $(BSP_DIR)/install)
diff --git a/scripts/standalone.mk b/scripts/standalone.mk
index fd7486b..06063b9 100644
--- a/scripts/standalone.mk
+++ b/scripts/standalone.mk
@@ -37,6 +37,10 @@ ifeq ($(RISCV_CMODEL),)
RISCV_CMODEL = medany
endif
+ifeq ($(LINK_TARGET),)
+LINK_TARGET = default
+endif
+
# Determines the XLEN from the toolchain tuple
ifeq ($(patsubst rv32%,rv32,$(RISCV_ARCH)),rv32)
RISCV_XLEN := 32
@@ -131,7 +135,7 @@ $(PROGRAM_ELF): \
$(PROGRAM_SRCS) \
$(BSP_DIR)/install/lib/$(CONFIGURATION)/libmetal.a \
$(BSP_DIR)/install/lib/$(CONFIGURATION)/libmetal-gloss.a \
- $(BSP_DIR)/metal.lds
+ $(BSP_DIR)/metal.$(LINK_TARGET).lds
mkdir -p $(dir $@)
$(MAKE) -C $(SRC_DIR) $(basename $(notdir $@)) \
AR=$(RISCV_AR) \