summaryrefslogtreecommitdiffstats
path: root/make/custom/idp.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'make/custom/idp.cfg')
-rw-r--r--make/custom/idp.cfg17
1 files changed, 0 insertions, 17 deletions
diff --git a/make/custom/idp.cfg b/make/custom/idp.cfg
index 06431c6929..51fab7d742 100644
--- a/make/custom/idp.cfg
+++ b/make/custom/idp.cfg
@@ -25,22 +25,6 @@ CFLAGS_OPTIMIZE_V=-O4 -fomit-frame-pointer
# 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)
-
-# override default location of Standard C Library
-# LIBC_LIBC=$(RTEMS_LIBC_DIR)/lib/msoft-float/libc.a
-# LIBC_LIBM=$(RTEMS_LIBC_DIR)/lib/msoft-float/libm.a
-
-define make-exe
- $(LD) $(LDFLAGS) -N -T $(LINKCMDS) -o $(basename $@).nxe \
- $(START_FILE) $(LINK_OBJS) --start-group $(LINK_LIBS) --end-group
- $(OBJCOPY) -O srec $(basename $@).nxe $(basename $@).i
- sed -e 's/.$$//' -e '/^S0/d' $(basename $@).i | \
- $(PACKHEX) > $(basename $@).exe
- $(NM) -g -n $(basename $@).nxe > $(basename $@).num
- $(SIZE) $(basename $@).nxe
-endef
-else
define make-exe
$(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $(basename $@).nxe \
$(LINK_OBJS) $(LINK_LIBS)
@@ -50,6 +34,5 @@ define make-exe
$(NM) -g -n $(basename $@).nxe > $(basename $@).num
$(SIZE) $(basename $@).nxe
endef
-endif
# Miscellaneous additions go here