source: rtems/make/custom/p4600.cfg @ 9e4fa6ae

4.104.114.84.95
Last change on this file since 9e4fa6ae was 06318a8, checked in by Joel Sherrill <joel.sherrill@…>, on 02/05/04 at 17:35:47

2004-02-05 Joel Sherrill <joel@…>

  • custom/p4000.cfg, custom/p4600.cfg, custom/p4650.cfg: Re-added these -- copied from the 4.6 branch.
  • Property mode set to 100644
File size: 1.2 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
14# gcc 2.95.x and 3.0
15#CPU_CFLAGS = -m4600 -mips3 -G0
16# gcc 3.1 and newer
17CPU_CFLAGS = -march=4600 -G0
18CCMIPS_CFLAGS_CPU=-cpu=r4600
19
20ifeq ($(RTEMS_CPU),mips64orion)
21CPU_DEFINES+=-DP4000 -DCPU_R4000 -DP3_DIAG -D_R4000 -D__mips=3
22endif
23
24#  This contains the compiler options necessary to select the CPU model
25#  and (hopefully) optimize for it.
26CPU_CFLAGS = -mips3 -G0
27
28# optimize flag: typically -0, could use -O4 or -fast
29# -O4 is ok for RTEMS
30CFLAGS_OPTIMIZE_V=-O4 -fomit-frame-pointer
31
32# The following are definitions of make-exe which will work using ld as
33# is currently required.  It is expected that as of gcc 2.8, the end user
34# will be able to override parts of the compilers specs and link using gcc.
35
36define make-exe
37        $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) \
38            -o $@ $(LINK_OBJS) $(LINK_LIBS)
39        $(OBJCOPY) -O srec $@ $(basename $@).srec1
40        $(PACKHEX) < $(basename $@).srec1 > $(basename $@).srec
41        $(RM) $(basename $@).srec1
42        $(NM) -n $@ > $(basename $@).num
43        $(SIZE) $@
44endef
45
46# Miscellaneous additions go here
47
Note: See TracBrowser for help on using the repository browser.