source: rtems/make/custom/c4xsim.cfg @ 7c89bfd

4.104.114.84.95
Last change on this file since 7c89bfd 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.0 KB
Line 
1#
2#  Configuration file for the GDB C4x simulator
3#
4#  $Id$
5#
6
7include $(RTEMS_ROOT)/make/custom/default.cfg
8
9ifeq ($(RTEMS_CPU_MODEL),)
10RTEMS_BSP=c4xsim
11RTEMS_CPU_MODEL=c40
12CPU_CFLAGS=-mcpu=40 #-msmall
13endif
14
15# XXX add this temporarily until c4x-rtems target defines this.
16CPU_CFLAGS += -D__rtems__
17
18# This is the actual bsp directory used during the build process.
19RTEMS_BSP_FAMILY=c4xsim
20
21# optimize flag: typically -0, could use -O4 or -fast
22# -O4 is ok for RTEMS
23# -O4 is broken for the moment on the C4x gcc
24#CFLAGS_OPTIMIZE_V=-O4
25CFLAGS_OPTIMIZE_V=-O1
26
27# this target has no start file
28START_BASE=
29
30# The following are definitions of make-exe which will work using ld as
31# is currently required.  It is expected that as of gcc 2.8, the end user
32# will be able to override parts of the compilers specs and link using gcc.
33
34define make-exe
35        $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) \
36            $(LDLIBS) -o $@ \
37            $(LINK_OBJS) $(LINK_LIBS)
38        $(NM) -g -n $@ > $(basename $@).num
39        $(SIZE) $@
40endef
41
42# Miscellaneous additions go here
Note: See TracBrowser for help on using the repository browser.