Changeset 88f60e26 in rtems


Ignore:
Timestamp:
01/06/02 20:09:43 (22 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
ab1ed86
Parents:
3f345bf
Message:

2002-02-05 Ralf Corsepius <corsepiu@…>

  • custom/genmongoosev.cfg: Remove -g from CPU_CFLAGS.
  • custom/h8sim.cfg: Remove -g from CPU_CFLAGS. Remove GCC272 support.
  • custom/jmr3904.cfg: Remove -g from CPU_CFLAGS. Remove GCC272.
Files:
7 edited

Legend:

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

    r3f345bf r88f60e26  
    270270    $(OBJS) \
    271271    $(MANAGERS_NOT_WANTED:%=$(PROJECT_RELEASE)/lib/no-%$(LIB_VARIANT).rel) \
    272     $(PROJECT_RELEASE)/lib/librtemsall$(LIBSUFFIX_VA)
     272    $(PROJECT_RELEASE)/lib/librtemsbsp$(LIBSUFFIX_VA)
     273    $(PROJECT_RELEASE)/lib/librtemscpu$(LIBSUFFIX_VA)
    273274
    274275ifeq ($(RTEMS_USE_GCC272),yes)
  • make/ChangeLog

    r3f345bf r88f60e26  
     12002-02-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * custom/genmongoosev.cfg: Remove -g from CPU_CFLAGS.
     4        * custom/h8sim.cfg: Remove -g from CPU_CFLAGS. Remove GCC272
     5        support.
     6        * custom/jmr3904.cfg: Remove -g from CPU_CFLAGS. Remove GCC272.
     7
    182001-12-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    29
  • make/compilers/gcc-no_bsp.cfg

    r3f345bf r88f60e26  
    266266    $(LIBC_EXTRA_LIBS)  \
    267267    $(PROJECT_RELEASE)/lib/libtest$(LIBSUFFIX_VA) \
    268     $(PROJECT_RELEASE)/lib/librtemsall$(LIBSUFFIX_VA) \
     268    $(PROJECT_RELEASE)/lib/librtemsbsp$(LIBSUFFIX_VA) \
     269    $(PROJECT_RELEASE)/lib/librtemscpu$(LIBSUFFIX_VA) \
    269270    $(LIBC_LIBM) $(LIBC_LIBC) $(LIBGCC)
    270271
  • make/compilers/gcc-target-default.cfg

    r3f345bf r88f60e26  
    270270    $(OBJS) \
    271271    $(MANAGERS_NOT_WANTED:%=$(PROJECT_RELEASE)/lib/no-%$(LIB_VARIANT).rel) \
    272     $(PROJECT_RELEASE)/lib/librtemsall$(LIBSUFFIX_VA)
     272    $(PROJECT_RELEASE)/lib/librtemsbsp$(LIBSUFFIX_VA)
     273    $(PROJECT_RELEASE)/lib/librtemscpu$(LIBSUFFIX_VA)
    273274
    274275ifeq ($(RTEMS_USE_GCC272),yes)
  • make/custom/genmongoosev.cfg

    r3f345bf r88f60e26  
    1616#  and (hopefully) optimize for it.
    1717#
    18 CPU_CFLAGS=-mips1 -g -G0
     18CPU_CFLAGS=-mips1 -G0
    1919
    2020# optimize flag: typically -0, could use -O4 or -fast
  • make/custom/h8sim.cfg

    r3f345bf r88f60e26  
    2121# -O4 is ok for RTEMS
    2222# CFLAGS_OPTIMIZE_V=-O4 -mleaf-procedures
    23 CFLAGS_OPTIMIZE_V=-O0 -g
     23CFLAGS_OPTIMIZE_V=-O0
    2424
    2525# The following are definitions of make-exe which will work using ld as
     
    2727# will be able to override parts of the compilers specs and link using gcc.
    2828
    29 ifeq ($(RTEMS_USE_GCC272),yes)
    30 
    31 define make-exe
    32         $(LD) -u _sbrk $(LDFLAGS) -N -T $(LINKCMDS) -o $(basename $@).exe \
    33              $(START_FILE) $(LINK_OBJS) --start-group $(LINK_LIBS) --end-group
    34         $(NM) -g -n $(basename $@).exe > $(basename $@).num
    35         $(SIZE) $(basename $@).exe
    36 endef
    37 
    38 else
    3929define make-exe
    4030        $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) \
     
    4434        $(SIZE) $@
    4535endef
    46 endif
    4736
    4837# Miscellaneous additions go here
  • make/custom/jmr3904.cfg

    r3f345bf r88f60e26  
    1616#  and (hopefully) optimize for it.
    1717#
    18 CPU_CFLAGS=-m3900 -g -G0
     18CPU_CFLAGS=-m3900 -G0
    1919
    2020# optimize flag: typically -0, could use -O4 or -fast
     
    2626# will be able to override parts of the compilers specs and link using gcc.
    2727
    28 ifeq ($(RTEMS_USE_GCC272),yes)
    29 
    30 define make-exe
    31         $(LD) -u _sbrk $(LDFLAGS) -N -T $(LINKCMDS) -o $(basename $@).exe \
    32              $(START_FILE) $(LINK_OBJS) --start-group $(LINK_LIBS) --end-group
    33         $(NM) -g -n $(basename $@).exe > $(basename $@).num
    34         $(SIZE) $(basename $@).exe
    35 endef
    36 
    37 else
    3828define make-exe
    3929        $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) \
     
    4333        $(SIZE) $@
    4434endef
    45 endif
    4635
    4736# Miscellaneous additions go here
Note: See TracChangeset for help on using the changeset viewer.