source: rtems/make/custom/mcp750.cfg @ 22eda53c

4.104.114.84.95
Last change on this file since 22eda53c was 4d4cc6e1, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/24/03 at 06:45:03

2003-08-23 Ralf Corsepius <corsepiu@…>

PR 470/bsps

  • custom/mcp750.cfg, custom/mtx603e.cfg, custem/mvme2307.cfg (make-exe): Rearrange arguments in calls to OBJCOPY to $(OBJCOPY) options infile outfile. (Reported for mcp750.cfg by Andrew Harris <Andrew.Harris@…>).
  • Property mode set to 100644
File size: 1.8 KB
Line 
1#
2#  Config file for Motorola MCP750 -- a MPC750 CompactPCI board
3#
4#  $Id$
5#
6
7include $(RTEMS_ROOT)/make/custom/default.cfg
8
9RTEMS_CPU=powerpc
10RTEMS_CPU_MODEL=mpc750
11RTEMS_PPC_EXCEPTION_PROCESSING_MODEL=new
12
13# This is the actual bsp directory used during the build process.
14RTEMS_BSP_FAMILY=motorola_powerpc
15
16#  This contains the compiler options necessary to select the CPU model
17#  and (hopefully) optimize for it.
18#
19# NOTE : cheking egcc 1.1.1 source code shows that the last know processor
20# is the 604 model and that this is the default generation option.
21#
22CPU_CFLAGS = -mcpu=750 -Dmpc750
23
24# optimize flag: typically -0, could use -O4 or -fast
25# -O4 is ok for RTEMS
26# NOTE2: some level of -O may be actually required by inline assembler (at least
27# -O2 so far.
28# NOTE2 Apparently nobody really knows the status or r2 and r13.
29# As far as I know, small data are pointer impose a very specific compliation
30# model => not used.
31# Currently the sdata2 and sbss2 sections are empty => r2 is not used...
32CFLAGS_OPTIMIZE_V=-O4 -mmultiple -mstring -mstrict-align
33#CFLAGS_OPTIMIZE_V=-O4 -fno-keep-inline-functions -fvolatile-global -fvolatile -mstrict-align -mcpu=750
34
35# debug flags: typically none, but at least -O1 is required due to this
36# BSP using inlined code
37CFLAGS_DEBUG_V = -O1 -mmultiple -mstring -mstrict-align
38
39define make-exe
40        $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) \
41           -o $(basename $@).nxe $(LINK_OBJS) $(LINK_LIBS)
42        $(NM) -g -n $(basename $@).nxe > $(basename $@).num
43        $(SIZE) $(basename $@).nxe
44        $(OBJCOPY) -O binary -R .comment -S $(basename $@).nxe rtems
45        gzip -vf9 rtems
46        $(LD) -o $@ $(PROJECT_RELEASE)/lib/bootloader.o --just-symbols=$(basename $@).nxe \
47        -b binary rtems.gz -T $(PROJECT_RELEASE)/lib/ppcboot.lds \
48        -Map $(basename $@).map && chmod 755 $@
49        rm -f rtems.gz
50endef
51
52# Miscellaneous additions go here
Note: See TracBrowser for help on using the repository browser.