source: rtems/make/custom/haleakala.cfg @ c7e67f3

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