diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-04-20 06:06:55 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-04-20 06:06:55 +0000 |
commit | 49547c68f9c2f0e524e64dc6ff8f43147907cae4 (patch) | |
tree | 4ddc654dfcd6c8c9e19330a94f50c537bd94f0b1 /sysdeps/hppa/Makefile | |
parent | 821fcfd5c3c0f3799b37fded7321199cdceade7e (diff) | |
download | glibc-49547c68f9c2f0e524e64dc6ff8f43147907cae4.tar.gz glibc-49547c68f9c2f0e524e64dc6ff8f43147907cae4.tar.xz glibc-49547c68f9c2f0e524e64dc6ff8f43147907cae4.zip |
Update.
2001-04-19 Alan Modra <amodra@one.net.au> * Makerules (libc_pic.os): Add $(LDFLAGS-c_pic.os). * sysdeps/hppa/Makefile (LDFLAGS-c_pic.os): Define. (CFLAGS-.os): Remove. * sysdeps/unix/sysv/linux/hppa/sysdep.h (CALL_MCOUNT): Update comment. * sysdeps/unix/sysv/linux/hppa/sys/ucontext.h (NGREG, NFPREG, gregset): Correct for new kernel definitions. 2001-04-19 Alan Modra <alan@linuxcare.com.au> * sysdeps/hppa/elf/initfini.c: Change dlt reg save to r3 and generate unwind info by hand. 2001-04-19 Ulrich Drepper <drepper@redhat.com> * sysdeps/unix/sysv/linux/powerpc/mmap64.c (__mmap64): Optimize a bit. * configure.in: Correct regular expression for msgfmt. Patch by Bruno Haible <haible@ilog.fr>.
Diffstat (limited to 'sysdeps/hppa/Makefile')
-rw-r--r-- | sysdeps/hppa/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sysdeps/hppa/Makefile b/sysdeps/hppa/Makefile index f6ad84358a..e6fb771c7d 100644 --- a/sysdeps/hppa/Makefile +++ b/sysdeps/hppa/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 2000 Free Software Foundation, Inc. +# Copyright (C) 2000, 2001 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by David Huggins-Daines (dhd@debian.org) @@ -17,8 +17,10 @@ # write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Boston, MA 02111-1307, USA. -# We need this for all shared objects since the build process uses ld -r -CFLAGS-.os += -ffunction-sections +# We used to need this since the build process uses ld -r. Now we use +# ld -r --unique=.text* which does more or less the same thing, but better. +# CFLAGS-.os += -ffunction-sections +LDFLAGS-c_pic.os += -Wl,--unique=.text* ifeq ($(subdir),elf) dl-routines += dl-symaddr dl-fptr |