source: rtems/bspkit/avr/bare/cfg/bare-avr3.cfg @ a714cb4

4.104.115
Last change on this file since a714cb4 was bd9b68fc, checked in by Joel Sherrill <joel.sherrill@…>, on 09/18/08 at 17:34:16

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

  • cfg/bare-avr3.cfg, cfg/bare-avr5.cfg: Eliminate START_BASE and START_FILE.
  • Property mode set to 100644
File size: 1.0 KB
RevLine 
[f98cd898]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_CPU_MODEL=avr3
11
12CPU_CFLAGS=-mmcu=avr3
13
14include $(RTEMS_ROOT)/make/custom/default.cfg
15
16# optimize flag: typically -0, could use -O4 or -fast
17# -O4 is ok for RTEMS
18CFLAGS_OPTIMIZE_V=-Os -fomit-frame-pointer
19
20# The following are definitions of make-exe which will work using ld as
21# is currently required.  It is expected that as of gcc 2.8, the end user
22# will be able to override parts of the compilers specs and link using gcc.
23
24define make-exe
25        @echo "*** Cannot do a link with the bare bsp. ***"
26        @echo "#!/bin/sh" > $(basename $@).exe
27        @echo "echo \"Cannot do a link with the bare bsp.\"" >> $(basename $@).exe
28endef
29
30define make-cxx-exe
31        @echo "*** Cannot do a link with the bare bsp. ***"
32        @echo "#!/bin/sh" > $(basename $@).exe
33        @echo "echo \"Cannot do a link with the bare bsp.\"" >> $(basename $@).exe
34endef
35
36# Miscellaneous additions go here
Note: See TracBrowser for help on using the repository browser.