source: rtems/make/custom/ss555.cfg @ 7d04202

4.104.115
Last change on this file since 7d04202 was 15043ea9, checked in by Joel Sherrill <joel.sherrill@…>, on 09/18/08 at 17:33:55

2008-09-18 Joel Sherrill <joel.sherrill@…>

  • compilers/gcc-no_bsp.cfg, compilers/gcc-target-default.cfg, custom/bare.cfg, custom/c3xsim.cfg, custom/c4xsim.cfg, custom/default.cfg, custom/haleakala.cfg, custom/mbx8xx.cfg, custom/mvme2307.cfg, custom/mvme3100.cfg, custom/mvme5500.cfg, custom/posix.cfg, custom/ss555.cfg, custom/virtex.cfg: Eliminate START_BASE and START_FILE.
  • Property mode set to 100644
File size: 886 bytes
Line 
1#
2#  Config file for an Intec Automation SS555 MPC555-based card
3#
4#  This file is derived from:
5#
6#  Config file for a PowerPC MPC860-based MBX821-001 card.
7#  Config file for a PowerPC 403 based helas403 card
8#  Config file for MPC860 based Ethernet Comm Board
9#
10#  $Id$
11#
12
13include $(RTEMS_ROOT)/make/custom/default.cfg
14
15RTEMS_CPU=powerpc
16GCC_CPU_MODEL=505
17RTEMS_CPU_MODEL=mpc555
18
19# This is the actual bsp directory used during the build process.
20RTEMS_BSP_FAMILY=ss555
21
22#  This contains the compiler options necessary to select the CPU model
23#  and (hopefully) optimize for it.
24#
25CPU_CFLAGS = -mcpu=$(GCC_CPU_MODEL) -D$(RTEMS_CPU_MODEL) -D$(RTEMS_BSP_FAMILY)
26
27# optimize flag: typically -O2
28CFLAGS_OPTIMIZE_V = -O2 -g -fno-keep-inline-functions
29
30define bsp-post-link
31        $(default-bsp-post-link)
32        cp $(basename $@).exe $(basename $@)$(DOWNEXT)
33        $(STRIP) $(basename $@)$(DOWNEXT)
34endef
Note: See TracBrowser for help on using the repository browser.