source: rtems/make/custom/mvme2100.cfg @ e68206a1

4.104.114.84.95
Last change on this file since e68206a1 was e7c2c0f, checked in by Joel Sherrill <joel.sherrill@…>, on 11/17/04 at 14:17:55

2004-11-17 Joel Sherrill <joel@…>

  • custom/mvme2100.cfg: Add make-cxx-exe rule.
  • Property mode set to 100644
File size: 2.0 KB
Line 
1#
2#  Config file for Motorola MVME2100 -- a MPC8240 VMEBus board
3#
4#  $Id$
5#
6
7include $(RTEMS_ROOT)/make/custom/default.cfg
8
9RTEMS_CPU=powerpc
10RTEMS_CPU_MODEL=mpc8240
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.
18CPU_CFLAGS = -mcpu=603e -Dmpc603e -Dppc603e
19
20# optimize flag: typically -0, could use -O4 or -fast
21# -O4 is ok for RTEMS
22# NOTE2: some level of -O may be actually required by inline assembler (at least
23# -O2 so far.
24# NOTE2 Apparently nobody really knows the status or r2 and r13.
25# As far as I know, small data are pointer impose a very specific compliation
26# model => not used.
27# Currently the sdata2 and sbss2 sections are empty => r2 is not used...
28CFLAGS_OPTIMIZE_V=-O4 -mmultiple -mstring -mstrict-align
29
30# debug flags: typically none, but at least -O1 is required due to this
31# BSP using inlined code
32CFLAGS_DEBUG_V = -O1 -mmultiple -mstring -mstrict-align
33
34define make-exe
35        $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) \
36           -o $(basename $@).nxe $(LINK_OBJS) $(LINK_LIBS)
37        $(NM) -g -n $(basename $@).nxe > $(basename $@).num
38        $(SIZE) $(basename $@).nxe
39        $(OBJCOPY) -O binary -R .comment -S $(basename $@).nxe rtems
40        gzip -vf9 rtems
41        $(LD) -o $@ $(PROJECT_RELEASE)/lib/bootloader.o --just-symbols=$(basename $@).nxe \
42        -b binary rtems.gz -T $(PROJECT_RELEASE)/lib/ppcboot.lds \
43        -Map $(basename $@).map && chmod 755 $@
44        rm -f rtems.gz
45endef
46
47define make-cxx-exe
48        $(LINK.cc) $(AM_CFLAGS) $(AM_LDFLAGS) \
49           -o $(basename $@).nxe $(LINK_OBJS) $(LINK_LIBS)
50        $(NM) -g -n $(basename $@).nxe > $(basename $@).num
51        $(SIZE) $(basename $@).nxe
52        $(OBJCOPY) -O binary -R .comment -S $(basename $@).nxe rtems
53        gzip -vf9 rtems
54        $(LD) -o $@ $(PROJECT_RELEASE)/lib/bootloader.o --just-symbols=$(basename $@).nxe \
55        -b binary rtems.gz -T $(PROJECT_RELEASE)/lib/ppcboot.lds \
56        -Map $(basename $@).map && chmod 755 $@
57        rm -f rtems.gz
58endef
59
60# Miscellaneous additions go here
Note: See TracBrowser for help on using the repository browser.