Changeset 0724e79b in rtems


Ignore:
Timestamp:
02/12/04 14:27:25 (19 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
acf23e63
Parents:
8c76048
Message:

2004-02-12 Ralf Corsepius <corsepiu@…>

  • Makefile.am: Don't include host.am.
  • automake/compile.am: Further cleanups.
Location:
c/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • c/src/ChangeLog

    r8c76048 r0724e79b  
     12004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * Makefile.am: Don't include host.am.
     4        * automake/compile.am: Further cleanups.
     5
    162004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    27
  • c/src/Makefile.am

    r8c76048 r0724e79b  
    4747
    4848include $(top_srcdir)/automake/subdirs.am
    49 include $(top_srcdir)/automake/host.am
  • c/src/automake/compile.am

    r8c76048 r0724e79b  
    3939if RTEMS_USE_GCC
    4040## All the stuff below is specific to gcc
    41 
    42 ## gcc >= 2.8.x
    4341GCCSPECS = $(GCC_SPECS) $(RTEMS_BSP_SPECS)
    44 else
    45 ## fall back to the old style compilers/*.cfg
    46 ## CONFIG.CC is supposed to be provided by <BSP>.cfg
    47 include $(CONFIG.CC)
    4842endif # RTEMS_USE_GCC
    49 
    50 DEFS = @DEFS@
    5143
    5244CPPFLAGS = @CPPFLAGS@ $(CPU_DEFINES) $(DEFINES)
    5345CFLAGS   = @RTEMS_CFLAGS@
    5446## FIXME: This should be correct, but is not supported, yet
    55 # CXXFLAGS = @RTEMS_CXXFLAGS@ $(XCXXFLAGS)
     47# CXXFLAGS = @RTEMS_CXXFLAGS@
    5648## Fall back to using RTEMS_CFLAGS for C++
    57 CXXFLAGS = @RTEMS_CFLAGS@ $(XCXXFLAGS)
    58 ASFLAGS  = $(CPU_ASFLAGS) $(CPU_CFLAGS) $(XASFLAGS)
     49CXXFLAGS = @RTEMS_CFLAGS@
     50ASFLAGS  = $(CPU_ASFLAGS) $(CPU_CFLAGS)
    5951
    6052depend:
     
    6355## gcc >= 2.8
    6456RTEMS_RELLDFLAGS = -qnolinkcmds -nostdlib -Wl,-r
    65 define make-rel
    66         $(LINK) $(RTEMS_RELLDFLAGS) $^
    67 endef
    68 else
    69 ## non-gcc
    70 define make-rel
    71         $(LINK) $(RTEMS_RELLDFLAGS) $^
    72 endef
    7357endif
    7458
     
    10488RTEMS_CFLAGS_OPTIMIZE_V =
    10589RTEMS_CFLAGS_DEBUG_V = -qrtems_debug -Wno-unused
    106 
    107 ## non-gcc
    108 ## We can't guess what flags might be required here.
    109 ## Pass the values from the environment if you want to apply them.
    11090endif
    11191RTEMS_CFLAGS__V = $(RTEMS_CFLAGS_OPTIMIZE_V)
     
    11797CPP = @CPP@ $(GCCSPECS)
    11898
    119 LD = @LD@
    120 OBJCOPY = @OBJCOPY@
    121 NM = @NM@
    122 SIZE = @SIZE@
    123 STRIP = @STRIP@
    124 
    12599##
    126100AM_CPPFLAGS = $(RTEMS_CPPFLAGS)
Note: See TracChangeset for help on using the changeset viewer.