source: rtems/make/custom/mpc8260ads.cfg @ fe36adfe

4.104.114.84.95
Last change on this file since fe36adfe was f5642664, checked in by Joel Sherrill <joel.sherrill@…>, on 08/02/02 at 00:08:01

2002-08-01 Joel Sherrill <joel@…>

  • eth_comm.cfg, mbx821_001.cfg, mbx860_002.cfg, mbx860_005b.cfg, mbx8xx.cfg, mpc8260ads.cfg: Per PR260 removed make-target-options.
  • Property mode set to 100644
File size: 1.5 KB
Line 
1#
2#  Config file for MPC8260 based Motorola ADS board
3#
4#  $Id$
5#
6
7include $(RTEMS_ROOT)/make/custom/default.cfg
8
9RTEMS_CPU=powerpc
10RTEMS_CPU_MODEL=mpc8260
118XX_CPU_TYPE=8260
12
13# This is the actual bsp directory used during the build process.
14RTEMS_BSP_FAMILY=mpc8260ads
15
16#  PPC_ABI (PowerPC)
17#     This defines the calling convention (Application Binary Interface)
18#     used in this configuration.  EABI is the only one supported.
19#     This BSP was initially developed using the PowerOpen ABI.
20#
21#  PPC_ASM (PowerPC)
22#     This defines the assembly language format used in this configuration.
23#     ELF is the only one supported.
24
25#  This contains the compiler options necessary to select the CPU model
26#  and (hopefully) optimize for it.
27#
28# CPU_CFLAGS = -mcpu=$(8XX_CPU_TYPE) -mstrict-align
29CPU_CFLAGS = -mcpu=603e -mstrict-align -Dmpc8260 \
30  -DPPC_ABI=PPC_ABI_EABI -DPPC_ASM=PPC_ASM_ELF
31
32# optimize flag: typically -0, could use -O4 or -fast
33# -O4 is ok for RTEMS
34# NOTE: some level of -O may be actually required by inline assembler
35CFLAGS_OPTIMIZE_V=-O4 -fno-keep-inline-functions
36
37# The following are definitions of make-exe which will work using ld as
38# is currently required.  It is expected that as of gcc 2.8, the end user
39# will be able to override parts of the compilers specs and link using gcc.
40
41define make-exe
42        $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $(basename $@).exe \
43            $(LINK_OBJS) $(LINK_LIBS)
44        $(NM) -g -n $@ > $(basename $@).num
45        $(SIZE) $@
46endef
47
48# Miscellaneous additions go here
Note: See TracBrowser for help on using the repository browser.