Skip to content

Commit 8e9fb09

Browse files
authored
Merge pull request #1371 from Incarnation-p-lee/panli/bugfix-for-esc-char
Remove ESC char for board extra abi argument
2 parents 6b60183 + 1e0a218 commit 8e9fb09

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,21 +97,21 @@ GLIBC_TARGET_BOARDS ?= $(shell $(srcdir)/scripts/generate_target_board \
9797
--sim-name riscv-sim \
9898
--cmodel $(shell echo @cmodel@ | cut -d '=' -f2) \
9999
--build-arch-abi $(GLIBC_MULTILIB_NAMES) \
100-
--extra-test-arch-abi-flags-list "$(subst ;,\;,$(EXTRA_MULTILIB_TEST))")
100+
--extra-test-arch-abi-flags-list "$(EXTRA_MULTILIB_TEST)")
101101

102102
NEWLIB_CC_FOR_TARGET ?= $(NEWLIB_TUPLE)-gcc
103103
NEWLIB_CXX_FOR_TARGET ?= $(NEWLIB_TUPLE)-g++
104104
NEWLIB_TARGET_BOARDS ?= $(shell $(srcdir)/scripts/generate_target_board \
105105
--sim-name riscv-sim \
106106
--cmodel $(shell echo @cmodel@ | cut -d '=' -f2) \
107107
--build-arch-abi $(NEWLIB_MULTILIB_NAMES) \
108-
--extra-test-arch-abi-flags-list "$(subst ;,\;,$(EXTRA_MULTILIB_TEST))")
108+
--extra-test-arch-abi-flags-list "$(EXTRA_MULTILIB_TEST)")
109109

110110
NEWLIB_NANO_TARGET_BOARDS ?= $(shell $(srcdir)/scripts/generate_target_board \
111111
--sim-name riscv-sim-nano \
112112
--cmodel $(shell echo @cmodel@ | cut -d '=' -f2) \
113113
--build-arch-abi $(NEWLIB_MULTILIB_NAMES) \
114-
--extra-test-arch-abi-flags-list "$(subst ;,\;,$(EXTRA_MULTILIB_TEST))")
114+
--extra-test-arch-abi-flags-list "$(EXTRA_MULTILIB_TEST)")
115115
NEWLIB_CC_FOR_MULTILIB_INFO := $(NEWLIB_CC_FOR_TARGET)
116116

117117
MUSL_TARGET_FLAGS := $(MUSL_TARGET_FLAGS_EXTRA)

0 commit comments

Comments
 (0)