source: rtems/make/custom/mvme2307.cfg @ 66565bb

4.104.114.84.95
Last change on this file since 66565bb was 8b9f8b8, checked in by Joel Sherrill <joel.sherrill@…>, on 04/18/02 at 13:07:35

2002-04-18 Ralf Corsepius <corsepiu@…>

  • custom/dmv177.cfg: Add -D_OLD_EXCEPTIONS -Dppc603e to CPU_CFLAGS. Remove obsolete comments.
  • custom/eth_comm.cfg: Remove make-target-options. Add -Dmpc$(CPU_TYPE) -DPPC_ABI=PPC_ABI_EABI -DPPC_ASM=PPC_ASM_ELF to CPU_CFLAGS.
  • custom/gen405.cfg: Add -D_OLD_EXCEPTIONS -Dppc405 to CPU_CFLAGS.
  • custom/helas403.cfg: Add -D_OLD_EXCEPTIONS -Dppc403 to CPU_CFLAGS.
  • custom/mbx8xx.cfg: Remove make-target-options. Add -Dmpc$(CPU_TYPE) -D$(RTEMS_MBX_MODEL) to CPU_CFLAGS. Remove obsolete comments.
  • custom/mcp750.cfg: Add -Dmpc750 to CPU_CFLAGS. Remove obsolete comments.
  • custom/mpc8260ads.cfg: Remove make-target-options. Add -Dmpc8260 -DPPC_ABI=PPC_ABI_EABI -DPPC_ASM=PPC_ASM_ELF to CPU_CFLAGS.
  • custom/mvme2307.cfg: Add -Dmpc604 to CPU_CFLAGS. Remove obsolete comments.
  • custom/ppcn_60x.cfg: Add -D_OLD_EXCEPTIONS -Dppc603e to CPU_CFLAGS. Remove obsolete comments.
  • custom/psim.cfg: Add -D_OLD_EXCEPTIONS -Dppc603e to CPU_CFLAGS. Remove obsolete comments.
  • custom/score603e.cfg: Add -D_OLD_EXCEPTIONS -Dppc603e to CPU_CFLAGS. Remove obsolete comments.
  • Property mode set to 100644
File size: 1.5 KB
Line 
1#
2#  Config file for the PowerPC 604 based mvme2307
3#
4#  $Id$
5#
6
7include $(RTEMS_ROOT)/make/custom/default.cfg
8
9RTEMS_CPU=powerpc
10RTEMS_CPU_MODEL=mpc604
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#
19CPU_CFLAGS = -mcpu=604 -mmultiple -mstring -mstrict-align -Dmpc604
20
21# optimize flag: typically -0, could use -O4 or -fast
22# -O4 is ok for RTEMS
23# NOTE: some level of -O may be actually required by inline assembler
24#CFLAGS_OPTIMIZE_V=-O4 -fno-keep-inline-functions
25CFLAGS_OPTIMIZE_V = -O4
26
27# debug flags: typically none, but at least -O1 is required due to this
28# BSP using inlined code
29CFLAGS_DEBUG_V = -O1
30
31# profile flags: typically none, but at least -O1 is required due to this
32# BSP using inlined code
33CFLAGS_PROFILE_V = -O1   
34
35define make-exe
36        $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) \
37           -o $(basename $@).nxe $(LINK_OBJS) $(LINK_LIBS)
38        $(NM) -g -n $(basename $@).nxe > $(basename $@).num
39        $(SIZE) $(basename $@).nxe
40        $(OBJCOPY) $(basename $@).nxe rtems -O binary -R .comment -S
41        gzip -vf9 rtems
42        $(LD) -o $@ $(PROJECT_RELEASE)/lib/bootloader.o --just-symbols=$(basename $@).nxe \
43        -b binary rtems.gz -T $(PROJECT_RELEASE)/lib/ppcboot.lds \
44        -Map $(basename $@).map && chmod 755 $@
45        rm -f rtems.gz
46endef
47
48# Miscellaneous additions go here
49
50# No start file
51START_BASE=
Note: See TracBrowser for help on using the repository browser.