source: rtems/make/custom/p4600.cfg @ 97dbdde1

4.104.114.84.95
Last change on this file since 97dbdde1 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.7 KB
Line 
1#
2#  Config file for the algorithmics p4000 evaluation board with R4600 cpu
3#
4#  $Id$
5#
6
7include $(RTEMS_ROOT)/make/custom/default.cfg
8
9RTEMS_CPU_MODEL=R4600
10
11# This is the actual bsp directory used during the build process.
12RTEMS_BSP_FAMILY=p4000
13
14CPU_CFLAGS=-mcpu=4600 -G0
15CCMIPS_CFLAGS_CPU=-cpu=r4600
16
17ifeq ($(RTEMS_CPU),mips64orion)
18CPU_DEFINES+=-DP4000 -DCPU_R4000 -DP3_DIAG -D_R4000 -D__mips=3
19endif
20
21#  This contains the compiler options necessary to select the CPU model
22#  and (hopefully) optimize for it.
23CPU_CFLAGS = -mips3 -G0
24
25# optimize flag: typically -0, could use -O4 or -fast
26# -O4 is ok for RTEMS
27CFLAGS_OPTIMIZE_V=-O4 -fomit-frame-pointer
28
29# The following are definitions of make-exe which will work using ld as
30# is currently required.  It is expected that as of gcc 2.8, the end user
31# will be able to override parts of the compilers specs and link using gcc.
32
33ifeq ($(RTEMS_USE_GCC272),yes)
34# This rule was used in 3.6.0
35#       $(CC) $(LDFLAGS) -nostdlib -o $(basename $@).exe \
36#           -T$(PROJECT_RELEASE)/lib/linkcmds $(LINK_FILES) $(LD_PATHS:%=-L %)
37
38define make-exe
39        $(LD) $(LDFLAGS) -N -T $(LINKCMDS) -o $(basename $@).exe \
40            $(START_FILE) $(LINK_OBJS) \
41            --start-group $(LINK_LIBS) --end-group
42        $(OBJCOPY) -O srec $(basename $@).exe $(basename $@).srec1
43        $(PACKHEX) < $(basename $@).srec1 > $(basename $@).srec
44        $(RM) $(basename $@).srec1
45        $(NM) -n $(basename $@).exe > $(basename $@).num
46        $(SIZE) $(basename $@).exe
47endef
48else
49define make-exe
50        $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) \
51            -o $@ $(LINK_OBJS) $(LINK_LIBS)
52        $(OBJCOPY) -O srec $@ $(basename $@).srec1
53        $(PACKHEX) < $(basename $@).srec1 > $(basename $@).srec
54        $(RM) $(basename $@).srec1
55        $(NM) -n $@ > $(basename $@).num
56        $(SIZE) $@
57endef
58endif
59
60# Miscellaneous additions go here
61
Note: See TracBrowser for help on using the repository browser.