Skip to content

Commit 0f9e41c

Browse files
ff520gitcmuellner
authored andcommitted
Add double quotation marks for build-arch-abi
In order to generate target board info for multilib, the parameters of build-arch-abi should be enclosed in double quotation marks. And the the python script generate_target_board will process it correctly Signed-off-by: ff520git <wangfeng@eswincomputing.com>
1 parent 65d9e0f commit 0f9e41c

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
@@ -96,21 +96,21 @@ GLIBC_CXX_FOR_TARGET ?= $(LINUX_TUPLE)-g++
9696
GLIBC_TARGET_BOARDS ?= $(shell $(srcdir)/scripts/generate_target_board \
9797
--sim-name riscv-sim \
9898
--cmodel $(shell echo @cmodel@ | cut -d '=' -f2) \
99-
--build-arch-abi $(GLIBC_MULTILIB_NAMES) \
99+
--build-arch-abi "$(GLIBC_MULTILIB_NAMES)" \
100100
--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) \
107-
--build-arch-abi $(NEWLIB_MULTILIB_NAMES) \
107+
--build-arch-abi "$(NEWLIB_MULTILIB_NAMES)" \
108108
--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) \
113-
--build-arch-abi $(NEWLIB_MULTILIB_NAMES) \
113+
--build-arch-abi "$(NEWLIB_MULTILIB_NAMES)" \
114114
--extra-test-arch-abi-flags-list "$(EXTRA_MULTILIB_TEST)")
115115
NEWLIB_CC_FOR_MULTILIB_INFO := $(NEWLIB_CC_FOR_TARGET)
116116

0 commit comments

Comments
 (0)