source: rtems/make/custom/p4650.cfg @ f8b891d

4.104.114.84.95
Last change on this file since f8b891d was f8b891d, checked in by Joel Sherrill <joel.sherrill@…>, on 01/08/01 at 18:14:01

2001-01-08 Joel Sherrill <joel@…>

  • custom/p4000.cfg, custom/p4600.cfg, custom/p4650.cfg: Remove unneeded definitions when compiled for "mips" rather than "mips64orion." Correct CPU_CFLAGS.
  • Property mode set to 100644
File size: 1.9 KB
Line 
1#
2#  Config file for the algorithmics p4000 evaluation board with R4650 cpu
3#
4#  $Id$
5#
6
7include $(RTEMS_ROOT)/make/custom/default.cfg
8
9RTEMS_CPU_MODEL=R4650
10
11# This is the actual bsp directory used during the build process.
12RTEMS_BSP_FAMILY=p4000
13
14CCMIPS_CFLAGS_CPU=-cpu=r4650
15
16ifeq ($(RTEMS_CPU),mips64orion)
17CPU_DEFINES+=-DP4000 -DCPU_R4000 -DP3_DIAG -D_R4000 -D__mips=3
18endif
19
20#  This contains the compiler options necessary to select the CPU model
21#  and (hopefully) optimize for it.
22CPU_CFLAGS = -m4650 -mips3 -G0
23
24#  This section makes the target dependent options file.
25define make-target-options
26endef
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
36ifeq ($(RTEMS_USE_GCC272),yes)
37# This rule was used in 3.6.0
38#       $(CC) $(LDFLAGS) -nostdlib -o $(basename $@).exe \
39#           -T$(PROJECT_RELEASE)/lib/linkcmds $(LINK_FILES) $(LD_PATHS:%=-L %)
40
41define make-exe
42        $(LD) $(LDFLAGS) -N -T $(LINKCMDS) -o $(basename $@).exe \
43            $(START_FILE) $(LINK_OBJS) \
44            --start-group $(LINK_LIBS) --end-group $(LD_LIBS)
45        $(OBJCOPY) -O srec $(basename $@).exe $(basename $@).srec1
46        $(PACKHEX) < $(basename $@).srec1 > $(basename $@).srec
47        $(RM) $(basename $@).srec1
48        $(NM) -n $(basename $@).exe > $(basename $@).num
49        $(SIZE) $(basename $@).exe
50endef
51else
52define make-exe
53        $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $(basename $@).exe \
54            $(LINK_OBJS) $(LINK_LIBS) $(LD_LIBS)
55        $(OBJCOPY) -O srec $(basename $@).exe $(basename $@).srec1
56        $(PACKHEX) < $(basename $@).srec1 > $(basename $@).srec
57        $(RM) $(basename $@).srec1
58        $(NM) -n $(basename $@).exe > $(basename $@).num
59        $(SIZE) $(basename $@).exe
60endef
61endif
62
63# Miscellaneous additions go here
Note: See TracBrowser for help on using the repository browser.