summaryrefslogtreecommitdiffstats
path: root/make/custom/shsim.cfg
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2001-01-22 14:03:44 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2001-01-22 14:03:44 +0000
commit227ae749dc5888a8210e8fd9ee6673e357bc988d (patch)
tree461951bd2824ee5141e5b8769a4ea170ad411383 /make/custom/shsim.cfg
parent2001-01-22 Michael Hamel <mhamel@adi.co.nz> (diff)
downloadrtems-227ae749dc5888a8210e8fd9ee6673e357bc988d.tar.bz2
2001-01-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* aclocal/bsp-alias.m4, aclocal/check-bsps.m4: Add simsh7032 and simsh7045.
Diffstat (limited to 'make/custom/shsim.cfg')
-rw-r--r--make/custom/shsim.cfg19
1 files changed, 7 insertions, 12 deletions
diff --git a/make/custom/shsim.cfg b/make/custom/shsim.cfg
index 5025a34e08..64ecd7b4f9 100644
--- a/make/custom/shsim.cfg
+++ b/make/custom/shsim.cfg
@@ -4,14 +4,20 @@
# $Id$
#
+HZ=20000000
+
include $(RTEMS_ROOT)/make/custom/default.cfg
RTEMS_CPU=sh
-RTEMS_CPU_MODEL=sh1
+RTEMS_CPU_MODEL=sh7032
# This is the actual bsp directory used during the build process.
RTEMS_BSP_FAMILY=shsim
+# BSP specific preprocessor flags.
+# These should only be used in BSP dependent directories.
+BSP_CPPFLAGS=-DHZ=$(HZ)
+
# This contains the compiler options necessary to select the CPU model
# and (hopefully) optimize for it.
#
@@ -31,16 +37,6 @@ endef
# 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 $@ \
@@ -48,7 +44,6 @@ define make-exe
$(NM) -g -n $@ > $(basename $@).num
$(SIZE) $@
endef
-endif
# Miscellaneous additions go here