summaryrefslogtreecommitdiffstats
path: root/make/custom/helas403.cfg
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--make/custom/helas403.cfg15
1 files changed, 0 insertions, 15 deletions
diff --git a/make/custom/helas403.cfg b/make/custom/helas403.cfg
index 1ad5cae8ba..5883df2254 100644
--- a/make/custom/helas403.cfg
+++ b/make/custom/helas403.cfg
@@ -30,20 +30,6 @@ 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
- $(OBJCOPY) -O srec $(basename $@).exe $(basename $@).srec
- $(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)
@@ -51,7 +37,6 @@ define make-exe
$(NM) -g -n $@ > $(basename $@).num
$(SIZE) $@
endef
-endif
# Miscellaneous additions go here