source: rtems/make/custom/csb360.cfg @ 11853d0

4.104.114.84.95
Last change on this file since 11853d0 was c2e43839, checked in by Jay Monkman <jtm@…>, on 08/03/04 at 05:03:36

2004-08-03 Jay Monkman <jtm@…>

  • custom/csb360.cfg: New file.
  • Property mode set to 100644
File size: 1.0 KB
Line 
1#
2#  Config file for a Cogent CSB360
3#
4#  Author: Jay Monkman <jtm@lopingdog.com>
5#
6#  $Id$
7#
8
9RTEMS_CPU=m68k
10RTEMS_CPU_MODEL=mcf5272
11
12include $(RTEMS_ROOT)/make/custom/default.cfg
13
14# This is the actual bsp directory used during the build process.
15RTEMS_BSP_FAMILY=csb360
16
17#
18# You must use versions of gcc and gas that support the -m5200 option.
19#
20CPU_CFLAGS = -m5200
21CPU_ASFLAGS = -m5200
22ASFLAGS = -m5200
23
24# optimize flag: typically -0, could use -O4 or -fast
25# It looks like any optimization level > 0 causes problems
26# with gcc-3.4.0. Until they are fixed, we'll use -O0
27CFLAGS_OPTIMIZE_V=-O0 -fomit-frame-pointer
28
29# The following are definitions of make-exe which will work using ld as
30# is currently required.  It is expected that as of gcc 2.8, the end user
31# will be able to override parts of the compilers specs and link using gcc.
32
33define make-exe
34        $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $@ \
35            $(LINK_OBJS) $(LINK_LIBS)
36        $(NM) -g -n $@ > $(basename $@).num
37        $(SIZE) $@
38endef
39
40# Miscellaneous additions go here
Note: See TracBrowser for help on using the repository browser.