aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKito Cheng <kito.cheng@sifive.com>2023-11-21 15:49:21 +0800
committerGitHub <noreply@github.com>2023-11-21 15:49:21 +0800
commit8e9fb09a0c4b1e566492ee6f42e8c1fa5ef7e0c2 (patch)
tree917310a993538599bee7174091b367040a4e0c93
parent6b60183455c7271fdefd3a417f3e3a7720d51aec (diff)
parent1e0a218f2a542c2d18e03633a08851de2e5d497f (diff)
downloadriscv-gnu-toolchain-8e9fb09a0c4b1e566492ee6f42e8c1fa5ef7e0c2.zip
riscv-gnu-toolchain-8e9fb09a0c4b1e566492ee6f42e8c1fa5ef7e0c2.tar.gz
riscv-gnu-toolchain-8e9fb09a0c4b1e566492ee6f42e8c1fa5ef7e0c2.tar.bz2
Merge pull request #1371 from Incarnation-p-lee/panli/bugfix-for-esc-char2023.11.22
Remove ESC char for board extra abi argument
-rw-r--r--Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index 723a6f3..7b7a4df 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -97,7 +97,7 @@ GLIBC_TARGET_BOARDS ?= $(shell $(srcdir)/scripts/generate_target_board \
--sim-name riscv-sim \
--cmodel $(shell echo @cmodel@ | cut -d '=' -f2) \
--build-arch-abi $(GLIBC_MULTILIB_NAMES) \
- --extra-test-arch-abi-flags-list "$(subst ;,\;,$(EXTRA_MULTILIB_TEST))")
+ --extra-test-arch-abi-flags-list "$(EXTRA_MULTILIB_TEST)")
NEWLIB_CC_FOR_TARGET ?= $(NEWLIB_TUPLE)-gcc
NEWLIB_CXX_FOR_TARGET ?= $(NEWLIB_TUPLE)-g++
@@ -105,13 +105,13 @@ NEWLIB_TARGET_BOARDS ?= $(shell $(srcdir)/scripts/generate_target_board \
--sim-name riscv-sim \
--cmodel $(shell echo @cmodel@ | cut -d '=' -f2) \
--build-arch-abi $(NEWLIB_MULTILIB_NAMES) \
- --extra-test-arch-abi-flags-list "$(subst ;,\;,$(EXTRA_MULTILIB_TEST))")
+ --extra-test-arch-abi-flags-list "$(EXTRA_MULTILIB_TEST)")
NEWLIB_NANO_TARGET_BOARDS ?= $(shell $(srcdir)/scripts/generate_target_board \
--sim-name riscv-sim-nano \
--cmodel $(shell echo @cmodel@ | cut -d '=' -f2) \
--build-arch-abi $(NEWLIB_MULTILIB_NAMES) \
- --extra-test-arch-abi-flags-list "$(subst ;,\;,$(EXTRA_MULTILIB_TEST))")
+ --extra-test-arch-abi-flags-list "$(EXTRA_MULTILIB_TEST)")
NEWLIB_CC_FOR_MULTILIB_INFO := $(NEWLIB_CC_FOR_TARGET)
MUSL_TARGET_FLAGS := $(MUSL_TARGET_FLAGS_EXTRA)