From a7681683d0aa6be019ac332dd83dd2b499790653 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 11 Oct 2001 16:36:41 +0000 Subject: 2001-10-11 Joel Sherrill * custom/mbx8xx.cfg, custom/mvme167.cfg: Rewrote use of strip command to avoid using the apparently broken or deprecated -o argument. --- make/ChangeLog | 5 +++++ make/custom/mbx8xx.cfg | 6 ++++-- make/custom/mvme167.cfg | 6 ++++-- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/make/ChangeLog b/make/ChangeLog index b067cad5b7..9ab27be858 100644 --- a/make/ChangeLog +++ b/make/ChangeLog @@ -1,4 +1,9 @@ +2001-10-11 Joel Sherrill + + * custom/mbx8xx.cfg, custom/mvme167.cfg: Rewrote use of strip command + to avoid using the apparently broken or deprecated -o argument. + 2001-09-28 Joel Sherrill * custom/ods68302.cfg: Add custom make-cxx-exe rule to account 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 diff --git a/make/custom/mvme167.cfg b/make/custom/mvme167.cfg index 2c07c8bb81..a5fa226015 100644 --- a/make/custom/mvme167.cfg +++ b/make/custom/mvme167.cfg @@ -86,7 +86,8 @@ define make-exe $(LD) $(LDFLAGS) -N -T $(LINKCMDS) -o $(basename $@)_sym.exe \ $(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 @@ -94,7 +95,8 @@ define make-exe $(LINK.c) $(AM_CFLAGS) $(AM_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 -- cgit v1.2.3