Changeset 93f79c0f in rtems


Ignore:
Timestamp:
05/08/01 22:59:25 (23 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
ba91ea3
Parents:
7ed4416
Message:

2001-05-07 Ralf Corsepius <corsepiu@…>

  • leaf.cfg: Remove CFLAGS_DEBUG_OPTIMIZE_V.
  • compilers/gcc-no_bsp.cfg: Remove CPP_CC_FLAGS.
  • compilers/gcc-portsw.cfg: Remove CPP_CC_FLAGS.
  • compilers/gcc-target-default.cfg: Remove *_DEBUG_OPTIMIZE_*-flags, remove unused flags, remove -ansi from CPP.
  • custom/eth_comm.cfg: Remove CPU_DEFINES.
  • custom/sim68000.cfg: Remove CPU_DEFINES.
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • c/src/make/compilers/gcc-target-default.cfg

    r7ed4416 r93f79c0f  
    9898# when debugging, optimize flag: typically empty
    9999# some compilers do allow optimization with their "-g"
    100 CFLAGS_DEBUG_OPTIMIZE_V=-g
    101 CXXFLAGS_DEBUG_OPTIMIZE_V=-g
     100CFLAGS_OPTIMIZE_V=-g
     101CXXFLAGS_OPTIMIZE_V=-g
    102102
    103103# profile flag; use gprof(1)
     
    111111endif
    112112
    113 # dynamic libraries
    114 #CFLAGS_DYNAMIC_V=-fpic
    115 #ASFLAGS_DYNAMIC_V=
    116 
    117113ifndef AUTOMAKE
    118114CFLAGS   += $(CFLAGS_OPTIMIZE) $(CFLAGS_DEBUG) $(CFLAGS_PROFILE)
     
    161157
    162158# CPP command to write file to standard output
    163 CPP=$(CC) -E -ansi -w -Wp,-$$
    164 
    165 # flags set by cc when running cpp
    166 # NOTE: CPP_CC_FLAGS does not seem to be used anywhere
    167 # CPP_CC_FLAGS=-D__STDC__
     159CPP=$(CC) -E -w -Wp,-$$
    168160
    169161# egrep regexp to ignore symbol table entries in ar archives.
  • make/ChangeLog

    r7ed4416 r93f79c0f  
     1
     22001-05-07      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     3
     4        * leaf.cfg: Remove CFLAGS_DEBUG_OPTIMIZE_V.
     5        * compilers/gcc-no_bsp.cfg: Remove CPP_CC_FLAGS.
     6        * compilers/gcc-portsw.cfg: Remove CPP_CC_FLAGS.
     7        * compilers/gcc-target-default.cfg: Remove *_DEBUG_OPTIMIZE_*-flags,
     8        remove unused flags, remove -ansi from CPP.
     9        * custom/eth_comm.cfg: Remove CPU_DEFINES.
     10        * custom/sim68000.cfg: Remove CPU_DEFINES.
    111       
    2122001-04-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    313
    4         * compilers/gcc-default.cfg: Dito.
     14        * compilers/gcc-no_bsp.cfg: Remove -ansi -fasm.
    515        * compilers/gcc-target-default.cfg: Dito.
    616        * compilers/gcc-portsw.cfg: Remove -Hansi.
  • make/compilers/gcc-no_bsp.cfg

    r7ed4416 r93f79c0f  
    138138# CPP command to write file to standard output
    139139CPP=$(CC) -E
    140 
    141 # flags set by cc when running cpp
    142 CPP_CC_FLAGS=-D__STDC__
    143140
    144141AS=as
  • make/compilers/gcc-portsw.cfg

    r7ed4416 r93f79c0f  
    119119# CPP command to write file to standard output
    120120CPP=$(CC) -E
    121 
    122 # flags set by cc when running cpp
    123 CPP_CC_FLAGS=-D__STDC__
    124121
    125122AS=/opt/29k/bin/as29
  • make/compilers/gcc-target-default.cfg

    r7ed4416 r93f79c0f  
    9898# when debugging, optimize flag: typically empty
    9999# some compilers do allow optimization with their "-g"
    100 CFLAGS_DEBUG_OPTIMIZE_V=-g
    101 CXXFLAGS_DEBUG_OPTIMIZE_V=-g
     100CFLAGS_OPTIMIZE_V=-g
     101CXXFLAGS_OPTIMIZE_V=-g
    102102
    103103# profile flag; use gprof(1)
     
    111111endif
    112112
    113 # dynamic libraries
    114 #CFLAGS_DYNAMIC_V=-fpic
    115 #ASFLAGS_DYNAMIC_V=
    116 
    117113ifndef AUTOMAKE
    118114CFLAGS   += $(CFLAGS_OPTIMIZE) $(CFLAGS_DEBUG) $(CFLAGS_PROFILE)
     
    161157
    162158# CPP command to write file to standard output
    163 CPP=$(CC) -E -ansi -w -Wp,-$$
    164 
    165 # flags set by cc when running cpp
    166 # NOTE: CPP_CC_FLAGS does not seem to be used anywhere
    167 # CPP_CC_FLAGS=-D__STDC__
     159CPP=$(CC) -E -w -Wp,-$$
    168160
    169161# egrep regexp to ignore symbol table entries in ar archives.
  • make/custom/eth_comm.cfg

    r7ed4416 r93f79c0f  
    1414RTEMS_BSP_FAMILY=eth_comm
    1515RTEMS_PPC_EXCEPTION_PROCESSING_MODEL=new
    16 
    17 CPU_DEFINES=
    1816
    1917#  This section makes the target dependent options file.
  • make/custom/sim68000.cfg

    r7ed4416 r93f79c0f  
    1919# This is the actual bsp directory used during the build process.
    2020RTEMS_BSP_FAMILY=sim68000
    21 
    22 #
    23 #  This contains the compiler options necessary to select the CPU model
    24 #  and (hopefully) optimize for it.
    25 #
    26 CPU_DEFINES =
    2721
    2822# optimize flag: typically -0, could use -O4 or -fast
  • make/leaf.cfg

    r7ed4416 r93f79c0f  
    5151      "CFLAGS_DEBUG=$(CFLAGS_DEBUG_V)" \
    5252      "CXXFLAGS_DEBUG=$(CXXFLAGS_DEBUG_V)" \
    53       "CFLAGS_OPTIMIZE=$(CFLAGS_DEBUG_OPTIMIZE_V)" \
     53      "CFLAGS_OPTIMIZE=$(CFLAGS_OPTIMIZE_V)" \
    5454      "LDFLAGS_DEBUG=$(LDFLAGS_DEBUG_V)" $(TARGET_VA)
    5555
Note: See TracChangeset for help on using the changeset viewer.