source: rtems/make/custom/bare.cfg @ 0c642539

4.104.114.84.95
Last change on this file since 0c642539 was 0c642539, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/30/06 at 06:46:38

Cleanup.

  • Property mode set to 100644
File size: 1.0 KB
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
14CPU_CFLAGS=$(BARE_CPU_CFLAGS)
15
16include $(RTEMS_ROOT)/make/custom/default.cfg
17
18# optimize flag: typically -O2
19CFLAGS_OPTIMIZE_V=-O4 -fomit-frame-pointer
20
21# this target has no start file
22START_BASE=
23
24# The following are definitions of make-exe which will work using ld as
25# is currently required.  It is expected that as of gcc 2.8, the end user
26# will be able to override parts of the compilers specs and link using gcc.
27
28define make-exe
29        @echo "*** Cannot do a link with the bare bsp. ***"
30        @echo "#!/bin/sh" > $(basename $@).exe
31        @echo "echo \"Cannot do a link with the bare bsp.\"" >> $(basename $@).exe
32endef
33
34define make-cxx-exe
35        @echo "*** Cannot do a link with the bare bsp. ***"
36        @echo "#!/bin/sh" > $(basename $@).exe
37        @echo "echo \"Cannot do a link with the bare bsp.\"" >> $(basename $@).exe
38endef
39
40# Miscellaneous additions go here
Note: See TracBrowser for help on using the repository browser.