diff options
author | Roland McGrath <roland@gnu.org> | 2002-12-11 23:13:29 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-12-11 23:13:29 +0000 |
commit | 6161ef14c3a27847bd9c8b85e7d92ff75dd80c8a (patch) | |
tree | f6ebb7bf54ea5be481bb1e6fafe6c33e749e543a | |
parent | 0f1316460cae46817ae843d0bba15c259d77d0e6 (diff) | |
download | glibc-6161ef14c3a27847bd9c8b85e7d92ff75dd80c8a.tar glibc-6161ef14c3a27847bd9c8b85e7d92ff75dd80c8a.tar.gz glibc-6161ef14c3a27847bd9c8b85e7d92ff75dd80c8a.tar.bz2 glibc-6161ef14c3a27847bd9c8b85e7d92ff75dd80c8a.zip |
* csu/Makefile ($(objpfx)elf-init.oS): New target, just clone
elf-init.o instead of compiling a PIC version.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | csu/Makefile | 5 |
2 files changed, 10 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2002-12-11 Roland McGrath <roland@redhat.com> + + * csu/Makefile ($(objpfx)elf-init.oS): New target, just clone + elf-init.o instead of compiling a PIC version. + 2002-12-11 Bruno Haible <bruno@clisp.org> * intl/gettext.h: Renamed to ... diff --git a/csu/Makefile b/csu/Makefile index f3b099ee40..669e26c32d 100644 --- a/csu/Makefile +++ b/csu/Makefile @@ -139,6 +139,11 @@ define link-relocatable $(CC) -nostdlib -nostartfiles -r -o $@ $^ endef +# We don't want this compiled with PIC. +# It's never included in shared libraries, unlike the rest of libc_nonshared.a. +$(objpfx)elf-init.oS: $(objpfx)elf-init.o + ln -f $< $@ + ifndef start-installed-name-rule ifeq (yes,$(elf)) # We link the ELF startfile along with a SHT_NOTE section indicating |