Changeset 84fff68d in rtems for make/custom


Ignore:
Timestamp:
06/11/08 08:17:27 (16 years ago)
Author:
Chris Johns <chrisj@…>
Branches:
4.10, 4.11, 4.9, 5, master
Children:
e339d8b
Parents:
9af8308
Message:

hris Johns <chrisj@…>

  • custom/av5282.cfg, custom/csb360.cfg, custom/gen68302.cfg, custom/gen68340.cfg, custom/gen68360.cfg, custom/mcf5206elite.cfg, custom/mcf5235.cfg, custom/mrm332.cfg, custom/mvme136.cfg, custom/mvme147.cfg, custom/mvme162.cfg, custom/mvme162lx.cfg, custom/mvme167.cfg, custom/ods68302.cfg, custom/sim68000.cfg, custom/simcpu32.cfg, custom/uC5282.cfg: Change CCFLAGS to use the -mcpu= option for Coldfires now supported in GCC 4.3.0.

2008-06-10 Matthew Riek <matthew.riek@…>

  • custom/mcf52235.cfg: New.
Location:
make/custom
Files:
1 added
17 edited

Legend:

Unmodified
Added
Removed
  • make/custom/av5282.cfg

    r9af8308 r84fff68d  
    1313#  This contains the compiler options necessary to select the CPU model
    1414#  and (hopefully) optimize for it.
    15 CPU_CFLAGS = -m528x
     15CPU_CFLAGS = -mcpu=528x
    1616
    1717
  • make/custom/csb360.cfg

    r9af8308 r84fff68d  
    1717# This contains the compiler options necessary to select the CPU model
    1818# and (hopefully) optimize for it.
    19 CPU_CFLAGS = -m5200
     19CPU_CFLAGS = -mcpu=5272
    2020
    2121# optimize flag: typically -O2
  • make/custom/gen68302.cfg

    r9af8308 r84fff68d  
    1616#  This contains the compiler options necessary to select the CPU model
    1717#  and (hopefully) optimize for it.
    18 CPU_CFLAGS = -m68302
     18CPU_CFLAGS = -mcpu=68302
    1919
    2020# optimize flag: typically -O2
  • make/custom/gen68340.cfg

    r9af8308 r84fff68d  
    1616# This contains the compiler options necessary to select the CPU model
    1717# and (hopefully) optimize for it.
    18 CPU_CFLAGS = -mcpu32
     18CPU_CFLAGS = -mcpu=cpu32
    1919
    2020# optimize flag: typically -O2
  • make/custom/gen68360.cfg

    r9af8308 r84fff68d  
    2121# and (hopefully) optimize for it.
    2222ifeq ($(RTEMS_GEN68360_COMPANION_MODE),yes)
    23 CPU_CFLAGS = -m68040
     23CPU_CFLAGS = -mcpu=68040
    2424else
    25 CPU_CFLAGS = -mcpu32
     25CPU_CFLAGS = -mcpu=cpu32
    2626endif
    2727
  • make/custom/mcf5206elite.cfg

    r9af8308 r84fff68d  
    1717#  This contains the compiler options necessary to select the CPU model
    1818#  and (hopefully) optimize for it.
    19 CPU_CFLAGS = -m5200
     19CPU_CFLAGS = -mcpu=5206
    2020
    2121# optimize flag: typically -O2
  • make/custom/mcf5235.cfg

    r9af8308 r84fff68d  
    1919#  This contains the compiler options necessary to select the CPU model
    2020#  and (hopefully) optimize for it.
    21 CPU_CFLAGS = -m528x
     21CPU_CFLAGS = -mcpu=5235
    2222
    2323# optimize flag: typically -O2
  • make/custom/mrm332.cfg

    r9af8308 r84fff68d  
    1515#  This contains the compiler options necessary to select the CPU model
    1616#  and (hopefully) optimize for it.
    17 CPU_CFLAGS = -mcpu32
     17CPU_CFLAGS = -mcpu=cpu32
    1818
    1919# optimize flag: typically -O2
  • make/custom/mvme136.cfg

    r9af8308 r84fff68d  
    1717#  and (hopefully) optimize for it.
    1818#
    19 CPU_CFLAGS =
     19CPU_CFLAGS = -mcpu=68020
    2020
    2121# optimize flag: typically -O2
  • make/custom/mvme147.cfg

    r9af8308 r84fff68d  
    1515#  This contains the compiler options necessary to select the CPU model
    1616#  and (hopefully) optimize for it.
    17 CPU_CFLAGS =
     17CPU_CFLAGS = -mcpu=68030
    1818
    1919# optimize flag: typically -O2
  • make/custom/mvme162.cfg

    r9af8308 r84fff68d  
    1919#
    2020
    21 CPU_CFLAGS = -m68040
     21CPU_CFLAGS = -mcpu=68040
    2222
    2323# optimize flag: typically -O2
  • make/custom/mvme162lx.cfg

    r9af8308 r84fff68d  
    2525#  and (hopefully) optimize for it.
    2626#
    27 CPU_CFLAGS = -m68040 -msoft-float
     27CPU_CFLAGS = -mcpu=68040 -msoft-float
    2828
    2929# optimize flag: typically -O2
  • make/custom/mvme167.cfg

    r9af8308 r84fff68d  
    2222#
    2323
    24 CPU_CFLAGS = -m68040
     24CPU_CFLAGS = -mcpu=68040
    2525
    2626
  • make/custom/ods68302.cfg

    r9af8308 r84fff68d  
    2323# 68000+softfloat results in gcc 2.95.2 giving default libraries.
    2424# CPU_CFLAGS = -m68302 -msoft-float
    25 CPU_CFLAGS = -m68302
     25CPU_CFLAGS = -mcpu=68302
    2626
    2727# optimize flag: typically -O2
  • make/custom/sim68000.cfg

    r9af8308 r84fff68d  
    1212#  This contains the compiler options necessary to select the CPU model
    1313#  and (hopefully) optimize for it.
    14 CPU_CFLAGS = -m68000
     14CPU_CFLAGS = -mcpu=68000
    1515
    1616# This is the actual bsp directory used during the build process.
  • make/custom/simcpu32.cfg

    r9af8308 r84fff68d  
    1212#  This contains the compiler options necessary to select the CPU model
    1313#  and (hopefully) optimize for it.
    14 CPU_CFLAGS = -mcpu32
     14CPU_CFLAGS = -mcpu=cpu32
    1515
    1616# This is the actual bsp directory used during the build process.
  • make/custom/uC5282.cfg

    r9af8308 r84fff68d  
    1313#  This contains the compiler options necessary to select the CPU model
    1414#  and (hopefully) optimize for it.
    15 CPU_CFLAGS = -m528x
     15CPU_CFLAGS = -mcpu=5282
    1616
    1717# optimize flag: typically -O2
Note: See TracChangeset for help on using the changeset viewer.