Changeset 0724e79b in rtems
- Timestamp:
- 02/12/04 14:27:25 (19 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- acf23e63
- Parents:
- 8c76048
- Location:
- c/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/ChangeLog
r8c76048 r0724e79b 1 2004-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 1 6 2004-02-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 7 -
c/src/Makefile.am
r8c76048 r0724e79b 47 47 48 48 include $(top_srcdir)/automake/subdirs.am 49 include $(top_srcdir)/automake/host.am -
c/src/automake/compile.am
r8c76048 r0724e79b 39 39 if RTEMS_USE_GCC 40 40 ## All the stuff below is specific to gcc 41 42 ## gcc >= 2.8.x43 41 GCCSPECS = $(GCC_SPECS) $(RTEMS_BSP_SPECS) 44 else45 ## fall back to the old style compilers/*.cfg46 ## CONFIG.CC is supposed to be provided by <BSP>.cfg47 include $(CONFIG.CC)48 42 endif # RTEMS_USE_GCC 49 50 DEFS = @DEFS@51 43 52 44 CPPFLAGS = @CPPFLAGS@ $(CPU_DEFINES) $(DEFINES) 53 45 CFLAGS = @RTEMS_CFLAGS@ 54 46 ## FIXME: This should be correct, but is not supported, yet 55 # CXXFLAGS = @RTEMS_CXXFLAGS@ $(XCXXFLAGS)47 # CXXFLAGS = @RTEMS_CXXFLAGS@ 56 48 ## Fall back to using RTEMS_CFLAGS for C++ 57 CXXFLAGS = @RTEMS_CFLAGS@ $(XCXXFLAGS)58 ASFLAGS = $(CPU_ASFLAGS) $(CPU_CFLAGS) $(XASFLAGS)49 CXXFLAGS = @RTEMS_CFLAGS@ 50 ASFLAGS = $(CPU_ASFLAGS) $(CPU_CFLAGS) 59 51 60 52 depend: … … 63 55 ## gcc >= 2.8 64 56 RTEMS_RELLDFLAGS = -qnolinkcmds -nostdlib -Wl,-r 65 define make-rel66 $(LINK) $(RTEMS_RELLDFLAGS) $^67 endef68 else69 ## non-gcc70 define make-rel71 $(LINK) $(RTEMS_RELLDFLAGS) $^72 endef73 57 endif 74 58 … … 104 88 RTEMS_CFLAGS_OPTIMIZE_V = 105 89 RTEMS_CFLAGS_DEBUG_V = -qrtems_debug -Wno-unused 106 107 ## non-gcc108 ## We can't guess what flags might be required here.109 ## Pass the values from the environment if you want to apply them.110 90 endif 111 91 RTEMS_CFLAGS__V = $(RTEMS_CFLAGS_OPTIMIZE_V) … … 117 97 CPP = @CPP@ $(GCCSPECS) 118 98 119 LD = @LD@120 OBJCOPY = @OBJCOPY@121 NM = @NM@122 SIZE = @SIZE@123 STRIP = @STRIP@124 125 99 ## 126 100 AM_CPPFLAGS = $(RTEMS_CPPFLAGS)
Note: See TracChangeset
for help on using the changeset viewer.