| 1 |
30 |
unneback |
#
|
| 2 |
|
|
# gensh2.cfg
|
| 3 |
|
|
#
|
| 4 |
|
|
# default configuration for Hitachi sh1 processors
|
| 5 |
|
|
#
|
| 6 |
|
|
# Authors: Ralf Corsepius (corsepiu@faw.uni-ulm.de)
|
| 7 |
|
|
#
|
| 8 |
|
|
# $Id: gensh2.cfg,v 1.2 2001-09-27 12:02:52 chris Exp $
|
| 9 |
|
|
#
|
| 10 |
|
|
|
| 11 |
|
|
HZ:=29491200
|
| 12 |
|
|
|
| 13 |
|
|
include $(RTEMS_ROOT)/make/custom/default.cfg
|
| 14 |
|
|
|
| 15 |
|
|
RTEMS_CPU=sh
|
| 16 |
|
|
RTEMS_CPU_MODEL=sh7045
|
| 17 |
|
|
|
| 18 |
|
|
# This is the actual bsp directory used during the build process.
|
| 19 |
|
|
RTEMS_BSP_FAMILY=gensh2
|
| 20 |
|
|
|
| 21 |
|
|
# BSP specific preprocessor flags.
|
| 22 |
|
|
# These should only be used in BSP dependent directories.
|
| 23 |
|
|
BSP_CPPFLAGS=-DHZ=$(HZ)
|
| 24 |
|
|
|
| 25 |
|
|
#
|
| 26 |
|
|
# This contains the compiler options necessary to select the CPU model
|
| 27 |
|
|
# and (hopefully) optimize for it.
|
| 28 |
|
|
#
|
| 29 |
|
|
CPU_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
|
| 36 |
|
|
CFLAGS_DEBUG_V = -O4 -g
|
| 37 |
|
|
|
| 38 |
|
|
# optimize flag: typically -0, could use -O4 or -fast
|
| 39 |
|
|
# -O4 is ok for RTEMS
|
| 40 |
|
|
CFLAGS_OPTIMIZE_V = -O4
|
| 41 |
|
|
|
| 42 |
|
|
# This section makes the target dependent options file.
|
| 43 |
|
|
|
| 44 |
|
|
# NDEBUG (C library)
|
| 45 |
|
|
# if defined asserts do not generate code. This is commonly used
|
| 46 |
|
|
# as a command line option.
|
| 47 |
|
|
#
|
| 48 |
|
|
# RTEMS_TEST_NO_PAUSE (RTEMS tests)
|
| 49 |
|
|
# do not pause between screens of output in the rtems tests
|
| 50 |
|
|
#
|
| 51 |
|
|
# RTEMS_DEBUG (RTEMS)
|
| 52 |
|
|
# If defined, debug checks in RTEMS and support library code are enabled.
|
| 53 |
|
|
#
|
| 54 |
|
|
# STANDALONE_EVB
|
| 55 |
|
|
# This switch compiles code to jump-start from FLASH, without a monitor
|
| 56 |
|
|
#
|
| 57 |
|
|
# START_HW_INIT
|
| 58 |
|
|
# This switch selects whether 'early_hw_init()' is called from
|
| 59 |
|
|
# 'start.S'; 'bsp_hw_init()' is always called from 'bspstart.c'
|
| 60 |
|
|
#
|
| 61 |
|
|
|
| 62 |
|
|
define make-target-options
|
| 63 |
|
|
@echo "/* #define NDEBUG 1 */ " >>$@
|
| 64 |
|
|
@echo "#define RTEMS_TEST_NO_PAUSE 1" >>$@
|
| 65 |
|
|
@echo "#define RTEMS_TEST_IO_STREAM 1" >>$@
|
| 66 |
|
|
@echo "/* #define STANDALONE_EVB 1 */" >>$@
|
| 67 |
|
|
@echo "#define START_HW_INIT 1" >>$@
|
| 68 |
|
|
@echo "/* #define RTEMS_DEBUG 1 */" >>$@
|
| 69 |
|
|
endef
|
| 70 |
|
|
|
| 71 |
|
|
|
| 72 |
|
|
# The following are definitions of make-exe which will work using ld as
|
| 73 |
|
|
# is currently required. It is expected that as of gcc 2.8, the end user
|
| 74 |
|
|
# will be able to override parts of the compilers specs and link using gcc.
|
| 75 |
|
|
|
| 76 |
|
|
ifeq ($(RTEMS_USE_GCC272),yes)
|
| 77 |
|
|
define make-exe
|
| 78 |
|
|
$(LD) $(LDFLAGS) -N -e _start \
|
| 79 |
|
|
-T$(PROJECT_RELEASE)/lib/linkcmds\
|
| 80 |
|
|
-o $(basename $@).exe \
|
| 81 |
|
|
$(START_FILE) $(LINK_OBJS) --start-group $(LINK_LIBS) --end-group
|
| 82 |
|
|
$(NM) -n $(basename $@).exe > $(basename $@).num
|
| 83 |
|
|
$(SIZE) $(basename $@).exe
|
| 84 |
|
|
endef
|
| 85 |
|
|
else
|
| 86 |
|
|
define make-exe
|
| 87 |
|
|
$(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -Wl,-Map,$(basename $@).map \
|
| 88 |
|
|
$(LDLIBS) -o $@ \
|
| 89 |
|
|
$(LINK_OBJS) $(LINK_LIBS) -lstdc++
|
| 90 |
|
|
$(NM) -n $@ > $(basename $@).num
|
| 91 |
|
|
$(SIZE) $@
|
| 92 |
|
|
endef
|
| 93 |
|
|
endif
|
| 94 |
|
|
|
| 95 |
|
|
# Miscellaneous additions go here
|