source: rtems/make/custom/gensh4.cfg @ 997c921

Last change on this file since 997c921 was 997c921, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/30/06 at 06:58:56

Cleanup (Backport from HEAD).

  • Property mode set to 100644
File size: 1.2 KB
Line 
1#
2# gensh4.cfg
3#
4# default configuration for Hitachi SH7750 board
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=gensh4
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 -mfmovd -ml
27#CPU_CFLAGS= -m4-single -ml
28#
29# It works with SH4_FPSCR_PR bit set
30CPU_CFLAGS= -m4 -ml
31
32# optimize flag: typically -O2
33CFLAGS_OPTIMIZE_V = -O4
34
35# The following are definitions of make-exe which will work using ld as
36# is currently required.  It is expected that as of gcc 2.8, the end user
37# will be able to override parts of the compilers specs and link using gcc.
38
39define make-exe
40        $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -Wl,-Map,$(basename $@).map \
41            $(LDLIBS) -o $@ \
42            $(LINK_OBJS) $(LINK_LIBS)
43        $(NM) -n $@ > $(basename $@).num
44        $(SIZE) $@
45endef
46
47# Miscellaneous additions go here
Note: See TracBrowser for help on using the repository browser.