source: rtems/make/custom/gensh2.cfg @ ce39123

4.104.114.84.95
Last change on this file since ce39123 was ce39123, checked in by Joel Sherrill <joel.sherrill@…>, on 07/13/00 at 14:53:41

Removed NDEBUG as a per BSP option.

  • Property mode set to 100644
File size: 2.4 KB
Line 
1#
2#  gensh2.cfg
3#
4#  default configuration for Hitachi sh1 processors
5#
6#  Authors: Ralf Corsepius (corsepiu@faw.uni-ulm.de)
7#
8#  $Id$
9#
10
11HZ:=29491200
12
13include $(RTEMS_ROOT)/make/custom/default.cfg
14
15RTEMS_CPU=sh
16RTEMS_CPU_MODEL=sh7045
17
18# This is the actual bsp directory used during the build process.
19RTEMS_BSP_FAMILY=gensh2
20
21# BSP specific preprocessor flags.
22# These should only be used in BSP dependent directories.
23BSP_CPPFLAGS=-DHZ=$(HZ)
24
25#
26#  This contains the compiler options necessary to select the CPU model
27#  and (hopefully) optimize for it.
28#
29CPU_CFLAGS= -m2
30
31# debug flags: opt. is needed to fit in RAM. '-O1' has shown bad side-
32# effects by failing to set up some hardware I/O registers in
33# c/src/lib/libbsp/sh/gensh2/startup/hw_init.c (and perhaps elsewhere),
34# which prevented proper chip initialization and muted SCI1 output.
35# CFLAGS_DEBUG_V = -O4 --save-temps
36CFLAGS_DEBUG_V = -O4 -g
37
38# optimize flag: typically -0, could use -O4 or -fast
39# -O4 is ok for RTEMS
40CFLAGS_OPTIMIZE_V = -O4
41
42#  This section makes the target dependent options file.
43
44#  RTEMS_TEST_NO_PAUSE (RTEMS tests)
45#     do not pause between screens of output in the rtems tests
46#
47#  STANDALONE_EVB
48#     This switch compiles code to jump-start from FLASH, without a monitor
49#
50#  START_HW_INIT
51#     This switch selects whether 'early_hw_init()' is called from
52#     'start.S'; 'bsp_hw_init()' is always called from 'bspstart.c'
53#
54
55define make-target-options
56        @echo "#define RTEMS_TEST_NO_PAUSE 1"               >>$@
57        @echo "#define RTEMS_TEST_IO_STREAM 1"              >>$@
58        @echo "/* #define STANDALONE_EVB 1 */"              >>$@
59        @echo "#define START_HW_INIT 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        $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -Wl,-Map,$(basename $@).map \
79            $(LDLIBS) -o $@ \
80            $(LINK_OBJS) $(LINK_LIBS) -lstdc++
81        $(NM) -n $@ > $(basename $@).num
82        $(SIZE) $@
83endef
84endif
85
86# Miscellaneous additions go here
Note: See TracBrowser for help on using the repository browser.