summaryrefslogtreecommitdiffstats
path: root/make/custom/mbx8xx.cfg
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--make/custom/mbx8xx.cfg6
1 files changed, 4 insertions, 2 deletions
diff --git a/make/custom/mbx8xx.cfg b/make/custom/mbx8xx.cfg
index 3e9b74431b..38ad5debfe 100644
--- a/make/custom/mbx8xx.cfg
+++ b/make/custom/mbx8xx.cfg
@@ -192,7 +192,8 @@ define make-exe
-u atexit -u __vectors -u start \
$(START_FILE) $(LINK_OBJS) --start-group $(LINK_LIBS) --end-group
$(NM) -g -n $(basename $@)_sym.exe> $(basename $@).nm
- $(STRIP) -O $(basename $@).exe $(basename $@)_sym-exe
+ cp $(basename $@)_sym.exe $(basename $@).exe
+ $(STRIP) $(basename $@).exe
$(SIZE) $(basename $@)_sym.exe
endef
else
@@ -200,7 +201,8 @@ define make-exe
$(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) $(MBX8xx_LDFLAGS) \
-o $(basename $@)_sym.exe $(LINK_OBJS) $(LINK_LIBS)
$(NM) -g -n $(basename $@)_sym.exe > $(basename $@).nm
- $(STRIP) -o $(basename $@).exe $(basename $@)_sym.exe
+ cp $(basename $@)_sym.exe $(basename $@).exe
+ $(STRIP) $(basename $@).exe
$(SIZE) $(basename $@)_sym.exe
endef
endif