source: rtems/make/custom/mtx603e.cfg @ 85560036

Last change on this file since 85560036 was 85560036, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/24/03 at 06:44:46

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.6 KB
Line 
1#
2#  Config file for Motorola MTX603e -- a MPC603e ATX form factor board
3#
4#  mcp750.cfg,v 1.24 2002/04/18 13:07:35 joel Exp
5#
6
7include $(RTEMS_ROOT)/make/custom/default.cfg
8
9RTEMS_CPU=powerpc
10RTEMS_CPU_MODEL=mpc6xx
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
47# Miscellaneous additions go here
Note: See TracBrowser for help on using the repository browser.