summaryrefslogtreecommitdiffstats
path: root/make/custom/gen405.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'make/custom/gen405.cfg')
-rw-r--r--make/custom/gen405.cfg14
1 files changed, 0 insertions, 14 deletions
diff --git a/make/custom/gen405.cfg b/make/custom/gen405.cfg
index b0cc6a6de6..cde20fdd02 100644
--- a/make/custom/gen405.cfg
+++ b/make/custom/gen405.cfg
@@ -37,26 +37,12 @@ START_BASE=
# is currently required. It is expected that as of gcc 2.8, the end user
# will be able to override parts of the compilers specs and link using gcc.
-ifeq ($(RTEMS_USE_GCC272),yes)
-# The --defsym arguments define arguments which are required by the linkcmds
-# file which is designed for gcc 2.8
-define make-exe
- $(LD) $(XLDFLAGS) -T $(LINKCMDS) \
- --defsym __fini=0 --defsym __init=0 \
- -o $@ -u atexit -u __vectors -u download_entry \
- $(START_FILE) $(LINK_OBJS) --start-group $(LINK_LIBS) --end-group
- $(NM) -g -n $@ > $(basename $@).num
- $(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 $(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