source: rtems/make/custom/bare.cfg @ 253f7495

4.104.115
Last change on this file since 253f7495 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: 1003 bytes
Line 
1#
2#  Config file for the "bare" BSP
3#
4#  $Id$
5#
6
7# This is the actual bsp directory used during the build process.
8RTEMS_BSP_FAMILY=bare
9
10RTEMS_BSP=bare
11
12RTEMS_CPU_MODEL=$(BARE_CPU_MODEL)
13
14# This contains the compiler options necessary to select the CPU model
15# and (hopefully) optimize for it.
16CPU_CFLAGS =$(BARE_CPU_CFLAGS)
17
18include $(RTEMS_ROOT)/make/custom/default.cfg
19
20# optimize flag: typically -O2
21CFLAGS_OPTIMIZE_V = -O2 -g -fomit-frame-pointer
22
23# The following are definitions of make-exe which will work using ld as
24# is currently required.
25
26define make-exe
27        @echo "*** Cannot do a link with the bare bsp. ***"
28        @echo "#!/bin/sh" > $(basename $@).exe
29        @echo "echo \"Cannot do a link with the bare bsp.\"" >> $(basename $@).exe
30endef
31
32define make-cxx-exe
33        @echo "*** Cannot do a link with the bare bsp. ***"
34        @echo "#!/bin/sh" > $(basename $@).exe
35        @echo "echo \"Cannot do a link with the bare bsp.\"" >> $(basename $@).exe
36endef
37
38# Miscellaneous additions go here
Note: See TracBrowser for help on using the repository browser.