source: rtems/make/custom/simsh4.cfg @ ee828299

Last change on this file since ee828299 was ee828299, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/18/07 at 10:21:00

Use $(NM) -g -n instead of $(NM) -n.

  • Property mode set to 100644
File size: 1.0 KB
Line 
1#
2# simsh4.cfg
3#
4# default configuration for Hitachi SH4 architecture simulator
5#
6# Copyright (C) 2001 OKTET Ltd., St.-Petersburg, Russia
7# Author: Victor V. Vengerov <vvv@oktet.ru>
8#
9#  $Id$
10#
11
12include $(RTEMS_ROOT)/make/custom/default.cfg
13
14RTEMS_CPU=sh
15RTEMS_CPU_MODEL=sh7750
16
17# This is the actual bsp directory used during the build process.
18RTEMS_BSP_FAMILY=simsh4
19
20#
21#  This contains the compiler options necessary to select the CPU model
22#  and (hopefully) optimize for it.
23#
24# Seems to be good without initialisation FPSCR.
25# Also works with SH4_FPSCR_DN bit set.
26#CPU_CFLAGS = -m4-single-only -ml
27#
28# It works with SH4_FPSCR_PR bit set
29CPU_CFLAGS = -m4 -ml
30
31
32# optimize flag: typically -O2
33CFLAGS_OPTIMIZE_V = -O2
34
35# The following are definitions of make-exe which will work using ld as
36# is currently required.
37
38define make-exe
39        $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -Wl,-Map,$(basename $@).map \
40            $(LDLIBS) -o $@ \
41            $(LINK_OBJS) $(LINK_LIBS)
42        $(NM) -g -n $@ > $(basename $@).num
43        $(SIZE) $@
44endef
45
46# Miscellaneous additions go here
Note: See TracBrowser for help on using the repository browser.