summaryrefslogtreecommitdiffstats
path: root/make/custom/h8sim.cfg
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2002-01-06 20:09:43 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2002-01-06 20:09:43 +0000
commit88f60e26a802e26429558e6e1190465778ed827f (patch)
tree823447c65718b3178bd545ad1efe9899fdcac932 /make/custom/h8sim.cfg
parent2002-01-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-88f60e26a802e26429558e6e1190465778ed827f.tar.bz2
2002-02-05 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* custom/genmongoosev.cfg: Remove -g from CPU_CFLAGS. * custom/h8sim.cfg: Remove -g from CPU_CFLAGS. Remove GCC272 support. * custom/jmr3904.cfg: Remove -g from CPU_CFLAGS. Remove GCC272.
Diffstat (limited to 'make/custom/h8sim.cfg')
-rw-r--r--make/custom/h8sim.cfg13
1 files changed, 1 insertions, 12 deletions
diff --git a/make/custom/h8sim.cfg b/make/custom/h8sim.cfg
index 5c4ecc199f..70591d9a7c 100644
--- a/make/custom/h8sim.cfg
+++ b/make/custom/h8sim.cfg
@@ -20,22 +20,12 @@ CPU_CFLAGS=-mh -mint32
# optimize flag: typically -0, could use -O4 or -fast
# -O4 is ok for RTEMS
# CFLAGS_OPTIMIZE_V=-O4 -mleaf-procedures
-CFLAGS_OPTIMIZE_V=-O0 -g
+CFLAGS_OPTIMIZE_V=-O0
# The following are definitions of make-exe which will work using ld as
# 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)
-
-define make-exe
- $(LD) -u _sbrk $(LDFLAGS) -N -T $(LINKCMDS) -o $(basename $@).exe \
- $(START_FILE) $(LINK_OBJS) --start-group $(LINK_LIBS) --end-group
- $(NM) -g -n $(basename $@).exe > $(basename $@).num
- $(SIZE) $(basename $@).exe
-endef
-
-else
define make-exe
$(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) \
$(LDLIBS) -o $@ \
@@ -43,7 +33,6 @@ define make-exe
$(NM) -g -n $@ > $(basename $@).num
$(SIZE) $@
endef
-endif
# Miscellaneous additions go here