source: rtems/make/custom/gensh1.cfg @ 7046cdd

4.104.114.84.95
Last change on this file since 7046cdd was 7046cdd, checked in by Joel Sherrill <joel.sherrill@…>, on 10/28/99 at 16:01:41

Patch rtems-rc-19991011-3.diff from Ralf Corsepius.

  • Property mode set to 100644
File size: 2.3 KB
Line 
1#
2#  gensh1.cfg
3#
4#  default configuration for Hitachi sh1 processors
5#
6#  Author: Ralf Corsepius (corsepiu@faw.uni-ulm.de)
7#
8#  $Id$
9#
10
11MHZ=20
12
13include $(RTEMS_ROOT)/make/custom/default.cfg
14
15RTEMS_CPU=sh
16RTEMS_CPU_MODEL=sh7032
17
18# This is the actual bsp directory used during the build process.
19RTEMS_BSP_FAMILY=gensh1
20
21# BSP specific preprocessor flags.
22# These should only be used in BSP dependent directories.
23BSP_CPPFLAGS=-DMHZ=$(MHZ)
24
25#
26#  This contains the compiler options necessary to select the CPU model
27#  and (hopefully) optimize for it.
28#
29#  HACK: We have to append BSP_CPPFLAGS to CPU_CFLAGS, because
30#        per BSP and per CPU CPPFLAGS are not (yet?) supported
31CPU_CFLAGS=-m1 $(BSP_CPPFLAGS)
32# CPU_CFLAGS=-m1
33
34# debug flags: typically none, but we use -O1 as it produces better code
35CFLAGS_DEBUG_V = -O1
36
37# optimize flag: typically -0, could use -O4 or -fast
38# -O4 is ok for RTEMS
39CFLAGS_OPTIMIZE_V = -O4
40
41CPPFLAGS+=$(BSP_CPPFLAGS)
42
43#  This section makes the target dependent options file.
44
45#  NDEBUG (C library)
46#     if defined asserts do not generate code.  This is commonly used
47#     as a command line option.
48#
49#  RTEMS_TEST_NO_PAUSE (RTEMS tests)
50#     do not pause between screens of output in the rtems tests
51#
52#  RTEMS_DEBUG (RTEMS)
53#     If defined, debug checks in RTEMS and support library code are enabled.
54#
55
56define make-target-options
57        @echo "/* #define NDEBUG 1 */ "                     >>$@
58        @echo "#define RTEMS_TEST_NO_PAUSE 1"               >>$@
59        @echo "/* #define RTEMS_DEBUG  1 */"                >>$@
60endef
61
62
63# The following are definitions of make-exe which will work using ld as
64# is currently required.  It is expected that as of gcc 2.8, the end user
65# will be able to override parts of the compilers specs and link using gcc.
66
67ifeq ($(RTEMS_USE_GCC272),yes)
68define make-exe
69        $(LD) $(LDFLAGS) -N -e _start \
70            -T$(PROJECT_RELEASE)/lib/linkcmds\
71            -o $(basename $@).exe \
72            $(START_FILE) $(LINK_OBJS) --start-group $(LINK_LIBS) --end-group
73        $(NM) -n $(basename $@).exe > $(basename $@).num
74        $(SIZE) $(basename $@).exe
75endef
76else
77define make-exe
78        $(CC) $(CPPFLAGS) -Wl,-Map,$(basename $@).map \
79            $(CFLAGS) $(CFLAGS_LD) -o $(basename $@).exe \
80            $(LINK_OBJS) $(LINK_LIBS)
81        $(NM) -n $(basename $@).exe > $(basename $@).num
82        $(SIZE) $(basename $@).exe
83endef
84endif
85
86# Miscellaneous additions go here
Note: See TracBrowser for help on using the repository browser.