Changeset be216b3 in rtems


Ignore:
Timestamp:
10/18/04 09:22:15 (19 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
180ae7a1
Parents:
626ace4
Message:

2004-10-18 Ralf Corsepius <ralf_corsepius@…>

  • custom/c3xsim.cfg, custom/c4xsim.cfg: Expand files.
Location:
make
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • make/ChangeLog

    r626ace4 rbe216b3  
     12004-10-18      Ralf Corsepius <ralf_corsepius@rtems.org>
     2
     3        * custom/c3xsim.cfg, custom/c4xsim.cfg: Expand files.
     4
    152004-09-29      Joel Sherrill <joel@OARcorp.com>
    26
  • make/custom/c3xsim.cfg

    r626ace4 rbe216b3  
    55#
    66
    7 RTEMS_BSP=c3xsim
     7include $(RTEMS_ROOT)/make/custom/default.cfg
     8
    89RTEMS_CPU_MODEL=c32
    910CPU_CFLAGS = -mcpu=32
    1011
    11 include $(RTEMS_ROOT)/make/custom/c4xsim.cfg
     12# This is the actual bsp directory used during the build process.
     13RTEMS_BSP_FAMILY=c4xsim
    1214
     15# optimize flag: typically -0, could use -O4 or -fast
     16# -O4 is ok for RTEMS
     17# -O4 is broken for the moment on the C4x gcc
     18#CFLAGS_OPTIMIZE_V=-O4
     19CFLAGS_OPTIMIZE_V=-O1
     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        $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) \
     30            $(LDLIBS) -o $@ \
     31            $(LINK_OBJS) $(LINK_LIBS)
     32        $(NM) -g -n $@ > $(basename $@).num
     33        $(SIZE) $@
     34endef
     35
     36# Miscellaneous additions go here
  • make/custom/c4xsim.cfg

    r626ace4 rbe216b3  
    77include $(RTEMS_ROOT)/make/custom/default.cfg
    88
    9 ifeq ($(RTEMS_CPU_MODEL),)
    10 RTEMS_BSP=c4xsim
    119RTEMS_CPU_MODEL=c40
    1210CPU_CFLAGS=-mcpu=40 #-msmall
    13 endif
    14 
    15 # XXX add this temporarily until c4x-rtems target defines this.
    16 CPU_CFLAGS += -D__rtems__
    1711
    1812# This is the actual bsp directory used during the build process.
Note: See TracChangeset for help on using the changeset viewer.