Skip to content

Commit ae70e09

Browse files
W-M-RAlan C. Assis
authored andcommitted
toolchain/arm: Fix link parameter error
Fixed the problem that when using armclang, it cannot add a space after --scatter= Signed-off-by: wangmingrong1 <[email protected]>
1 parent 7abfbdd commit ae70e09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/arm/src/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ else
135135
endif
136136

137137
ARCHSCRIPT := $(call CONVERT_PATH,$(ARCHSCRIPT))
138-
LDFLAGS += $(addprefix $(SCRIPT_OPT) ,$(addsuffix .tmp,$(ARCHSCRIPT))) $(EXTRALINKCMDS)
138+
LDFLAGS += $(addprefix $(SCRIPT_OPT),$(addsuffix .tmp,$(ARCHSCRIPT))) $(EXTRALINKCMDS)
139139
LIBPATHS += $(LIBPATH_OPT) $(call CONVERT_PATH,$(TOPDIR)$(DELIM)staging)
140140

141141
BOARDMAKE = $(if $(wildcard board$(DELIM)Makefile),y,)

0 commit comments

Comments
 (0)