source: rtems/make/custom/gensh4.cfg @ fe36adfe

4.104.114.84.95
Last change on this file since fe36adfe was 97dbdde1, checked in by Joel Sherrill <joel.sherrill@…>, on 12/07/01 at 12:32:10

2001-12-04 Ralf Corsepius <corsepiu@…>

  • custom/bare.cfg: Remove make-target-options.
  • custom/c4xsim.cfg: Ditto.
  • custom/cvme961.cfg: Ditto.
  • custom/efi68k.cfg: Ditto.
  • custom/gen68302.cfg: Ditto.
  • custom/gen68340.cfg: Ditto.
  • custom/genmongoosev.cfg: Ditto.
  • custom/gensh4.cfg: Remove make-target-options, remove GCC272 make-exe, remove empty lines.
  • custom/h8sim.cfg: Remove make-target-options.
  • custom/mcf5206elite.cfg: Ditto.
  • custom/mrm332.cfg: Ditto.
  • custom/mvme147.cfg: Ditto.
  • custom/ods68302.cfg: Ditto.
  • custom/p4000.cfg: Ditto.
  • custom/p4600.cfg: Ditto.
  • custom/p4650.cfg: Ditto.
  • custom/pc386.cfg: Ditto.
  • custom/portsw.cfg: Ditto.
  • custom/simsh4.cfg: Ditto.
  • 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# debug flags:
33CFLAGS_DEBUG_V = -O0 -ggdb
34
35# optimize flag: typically -0, could use -O4 or -fast
36# -O4 is ok for RTEMS
37CFLAGS_OPTIMIZE_V = -O4
38
39# The following are definitions of make-exe which will work using ld as
40# is currently required.  It is expected that as of gcc 2.8, the end user
41# will be able to override parts of the compilers specs and link using gcc.
42
43define make-exe
44        $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -Wl,-Map,$(basename $@).map \
45            $(LDLIBS) -o $@ \
46            $(LINK_OBJS) $(LINK_LIBS)
47        $(NM) -n $@ > $(basename $@).num
48        $(SIZE) $@
49endef
50
51# Miscellaneous additions go here
Note: See TracBrowser for help on using the repository browser.