summaryrefslogtreecommitdiffstats
path: root/make/custom/eth_comm.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'make/custom/eth_comm.cfg')
-rw-r--r--make/custom/eth_comm.cfg13
1 files changed, 0 insertions, 13 deletions
diff --git a/make/custom/eth_comm.cfg b/make/custom/eth_comm.cfg
index f91edfaa54..f9bc608dd1 100644
--- a/make/custom/eth_comm.cfg
+++ b/make/custom/eth_comm.cfg
@@ -50,25 +50,12 @@ CFLAGS_OPTIMIZE_V=-O4 -fno-keep-inline-functions
# 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
define make-exe
$(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $(basename $@).exe \
$(LINK_OBJS) $(LINK_LIBS)
$(NM) -g -n $@ > $(basename $@).num
$(SIZE) $@
endef
-endif
# Miscellaneous additions go here