source: rtems/make/custom/helas403.cfg @ 1469b45b

4.104.114.84.95
Last change on this file since 1469b45b 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.1 KB
Line 
1#
2#  Config file for a PowerPC 403 based helas403 card
3#
4#  $Id$
5#
6#
7
8include $(RTEMS_ROOT)/make/custom/default.cfg
9
10RTEMS_CPU=powerpc
11RTEMS_CPU_MODEL=ppc403
12
13# This is the actual bsp directory used during the build process.
14RTEMS_BSP_FAMILY=helas403
15
16#  This contains the compiler options necessary to select the CPU model
17#  and (hopefully) optimize for it.
18#
19CPU_CFLAGS = -mcpu=403 -D_OLD_EXCEPTIONS -Dppc403
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
24CFLAGS_OPTIMIZE_V=-O4 -fno-keep-inline-functions
25
26# No start file
27START_BASE=
28
29# The following are definitions of make-exe which will work using ld as
30# is currently required.  It is expected that as of gcc 2.8, the end user
31# will be able to override parts of the compilers specs and link using gcc.
32
33define make-exe
34        $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $(basename $@).exe \
35            $(LINK_OBJS) $(LINK_LIBS)
36        $(OBJCOPY) -O srec $(basename $@).exe $(basename $@).srec
37        $(NM) -g -n $@ > $(basename $@).num
38        $(SIZE) $@
39endef
40
41# Miscellaneous additions go here
42
Note: See TracBrowser for help on using the repository browser.