Makefile: do not echo the linking command for native
This commit is contained in:
parent
84051a9071
commit
befa045964
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -127,7 +127,7 @@ $(IMAGE).elf: $(LINKAGE) $(LDSCRIPTS)
|
||||||
@echo \# Creating image [$(ARCH)]
|
@echo \# Creating image [$(ARCH)]
|
||||||
@echo + LD "->" $(IMAGE_REL).elf
|
@echo + LD "->" $(IMAGE_REL).elf
|
||||||
ifneq ($(filter $(ARCH),native),)
|
ifneq ($(filter $(ARCH),native),)
|
||||||
$(CXX) -o $@ -Wl,--whole-archive $(LINKAGE) -Wl,-no-whole-archive $(LDFLAGS_CXX)
|
@$(CXX) -o $@ -Wl,--whole-archive $(LINKAGE) -Wl,-no-whole-archive $(LDFLAGS_CXX)
|
||||||
else
|
else
|
||||||
@$(LD) $(LDFLAGS) -o $@ --start-group $(LINKAGE) --end-group
|
@$(LD) $(LDFLAGS) -o $@ --start-group $(LINKAGE) --end-group
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue