2004-01-15 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* automake/compile.am: Add RTEMS_RELLDFLAGS.
	Remove XLDFLAGS.
This commit is contained in:
Ralf Corsepius
2004-01-15 04:30:28 +00:00
parent 0e786f6604
commit 9480bb4285
2 changed files with 8 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2004-01-15 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* automake/compile.am: Add RTEMS_RELLDFLAGS.
Remove XLDFLAGS.
2004-01-15 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2004-01-15 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* wrapup/Makefile.am: Reflect changes to libchip/*. * wrapup/Makefile.am: Reflect changes to libchip/*.

View File

@@ -146,13 +146,14 @@ LINK_FILES =\
if RTEMS_USE_GCC if RTEMS_USE_GCC
## gcc >= 2.8 ## gcc >= 2.8
RTEMS_RELLDFLAGS = -qnolinkcmds -nostdlib -Wl,-r
define make-rel define make-rel
$(LINK) -qnolinkcmds -nostdlib -Wl,-r $(XLDFLAGS) $^ $(LINK) $(RTEMS_RELLDFLAGS) $^
endef endef
else else
## non-gcc ## non-gcc
define make-rel define make-rel
$(LINK) $(XLDFLAGS) $^ $(LINK) $(RTEMS_RELLDFLAGS) $^
endef endef
endif endif