source: rtems/make/custom/virtex.cfg @ 641982a

4.104.115
Last change on this file since 641982a 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: 717 bytes
Line 
1#
2#  Config file for a generic PowerPC 405 based card
3#
4#  $Id$
5#
6
7include $(RTEMS_ROOT)/make/custom/default.cfg
8
9RTEMS_CPU=powerpc
10RTEMS_CPU_MODEL=ppc405
11
12# This is the actual bsp directory used during the build process.
13RTEMS_BSP_FAMILY=virtex
14
15#  This contains the compiler options necessary to select the CPU model
16#  and (hopefully) optimize for it.
17#
18CPU_CFLAGS = -mcpu=403 -Dppc405 -Dvirtex
19
20# optimize flag: typically -0, could use -O4 or -fast
21# -O4 is ok for RTEMS
22# NOTE: some level of -O may be actually required by inline assembler
23CFLAGS_OPTIMIZE_V = -O2 -g -fno-keep-inline-functions
24
25define bsp-post-link
26        $(default-bsp-post-link)
27        $(OBJCOPY) -O srec $(basename $@).exe $(basename $@)$(DOWNEXT)
28endef
Note: See TracBrowser for help on using the repository browser.