2007-06-12 Joel Sherrill <joel.sherrill@OARcorp.com>

* custom/armulator.cfg: Removed.
This commit is contained in:
Joel Sherrill
2007-06-12 19:47:34 +00:00
parent 85591ad7b2
commit 31aabe78cf
2 changed files with 4 additions and 31 deletions

View File

@@ -1,3 +1,7 @@
2007-06-12 Joel Sherrill <joel.sherrill@OARcorp.com>
* custom/armulator.cfg: Removed.
2007-05-16 Ralf Corsépius <ralf.corsepius@rtems.org> 2007-05-16 Ralf Corsépius <ralf.corsepius@rtems.org>
* custom/mvme5500.cfg: Use -O2 again. * custom/mvme5500.cfg: Use -O2 again.

View File

@@ -1,31 +0,0 @@
#
# Config file for ARMulator
#
# $Id$
#
include $(RTEMS_ROOT)/make/custom/default.cfg
RTEMS_CPU=arm
RTEMS_CPU_MODEL=arm7tdmi
# This is the actual bsp directory used during the build process.
RTEMS_BSP_FAMILY=armulator
# This contains the compiler options necessary to select the CPU model
# and (hopefully) optimize for it.
#
#CPU_CFLAGS = -mcpu=arm7tdmi
# CPU_CFLAGS = -msoft-float
# optimize flag: typically -O2
CFLAGS_OPTIMIZE_V = -O2 -g
define make-exe
$(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $@ \
$(LINK_OBJS) $(LINK_LIBS)
$(NM) -g -n $(basename $@).exe > $(basename $@).num
$(SIZE) $(basename $@).exe
endef
# Miscellaneous additions go here