summaryrefslogtreecommitdiffstats
path: root/make/custom/gen405.cfg
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2001-11-13 23:21:34 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2001-11-13 23:21:34 +0000
commit7c67be45de778c72e6db98aa3e8696bf4facc3ad (patch)
tree3963ac1f95464a93a8ab71d4431bcd23fa1fad36 /make/custom/gen405.cfg
parent2001-11-13 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-7c67be45de778c72e6db98aa3e8696bf4facc3ad.tar.bz2
2001-11-13 Joel Sherrill <joel@OARcorp.com>
* custom/helas403.cfg, custom/gen405.cfg: Removed dependency on the --srec-len argument to objcopy only supported in binutils 2.11 or newer.
Diffstat (limited to 'make/custom/gen405.cfg')
-rw-r--r--make/custom/gen405.cfg6
1 files changed, 4 insertions, 2 deletions
diff --git a/make/custom/gen405.cfg b/make/custom/gen405.cfg
index 5e7c81416b..09d01162f8 100644
--- a/make/custom/gen405.cfg
+++ b/make/custom/gen405.cfg
@@ -66,17 +66,19 @@ define make-exe
$(SIZE) $@
endef
else
+# $(OBJCOPY) -O srec --srec-len 120 $(basename $@).exe $(basename $@).srec
define make-exe
$(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $(basename $@).exe $(LINK_OBJS) $(LINK_LIBS)
- $(OBJCOPY) -O srec --srec-len 120 $(basename $@).exe $(basename $@).srec
+ $(OBJCOPY) -O srec $(basename $@).exe $(basename $@).srec
$(NM) -g -n $@ > $(basename $@).num
$(SIZE) $@
endef
endif
+# $(OBJCOPY) -O srec --srec-len 120 $(basename $@).exe $(basename $@).srec
define make-cxx-exe
$(LINK.c) $(AM_CFLAGS) $(AM_CXXFLAGS) $(AM_LDFLAGS) -o $(basename $@).exe $(LINK_OBJS) $(LINK_LIBS)
- $(OBJCOPY) -O srec --srec-len 120 $(basename $@).exe $(basename $@).srec
+ $(OBJCOPY) -O srec $(basename $@).exe $(basename $@).srec
$(NM) -g -n $@ > $(basename $@).num
$(SIZE) $@
endef