patches/binutils/2.18.50.0.4/300-check-ldrunpath-length.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Jun 24 16:24:09 2008 +0000 (2008-06-24)
changeset 611 eac4dc8da8a9
permissions -rw-r--r--
New patches from Ioannis E. VENETIS to allow building more up-to-date Alpha x-compilers.
Some patches are still missing, though.
See: http://sourceware.org/ml/libc-help/2008-06/msg00061.html

/trunk/patches/glibc/2.5.1/270-glibc-alpha-cfi.patch | 25 25 0 0 ++++++++++
/trunk/patches/glibc/2.5.1/280-glibc-alpha-sigsuspend.patch | 24 24 0 0 ++++++++++
/trunk/patches/glibc/2.5/270-glibc-alpha-cfi.patch | 25 25 0 0 ++++++++++
/trunk/patches/glibc/2.5/280-glibc-alpha-sigsuspend.patch | 24 24 0 0 ++++++++++
/trunk/patches/glibc/linuxthreads-2.3.6/270-glibc-linuxthreads-alpha-cfi.patch | 25 25 0 0 ++++++++++
/trunk/patches/gcc/4.2.0/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.2.1/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.3.0/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.2.2/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.3.1/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.2.3/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
11 files changed, 225 insertions(+)
yann@475
     1
Check LD_RUN_PATH length, copied from buildroot.
yann@475
     2
yann@475
     3
 binutils-2.18.50.0.6/ld/emultempl/elf32.em |    4     4     0     0 ++++
yann@475
     4
 1 file changed, 4 insertions(+)
yann@475
     5
yann@475
     6
diff -durN binutils-2.18.50.0.6.orig/ld/emultempl/elf32.em binutils-2.18.50.0.6/ld/emultempl/elf32.em
yann@475
     7
--- binutils-2.18.50.0.6.orig/ld/emultempl/elf32.em	2008-04-03 18:54:25.000000000 +0200
yann@475
     8
+++ binutils-2.18.50.0.6/ld/emultempl/elf32.em	2008-05-02 23:30:08.000000000 +0200
yann@475
     9
@@ -1220,6 +1220,8 @@
yann@475
    10
 	      && command_line.rpath == NULL)
yann@475
    11
 	    {
yann@475
    12
 	      lib_path = (const char *) getenv ("LD_RUN_PATH");
yann@475
    13
+	      if ((lib_path) && (strlen (lib_path) == 0))
yann@475
    14
+		  lib_path = NULL;
yann@475
    15
 	      if (gld${EMULATION_NAME}_search_needed (lib_path, &n,
yann@475
    16
 						      force))
yann@475
    17
 		break;
yann@475
    18
@@ -1405,6 +1407,8 @@
yann@475
    19
   rpath = command_line.rpath;
yann@475
    20
   if (rpath == NULL)
yann@475
    21
     rpath = (const char *) getenv ("LD_RUN_PATH");
yann@475
    22
+  if ((rpath) && (strlen (rpath) == 0))
yann@475
    23
+      rpath = NULL;
yann@475
    24
   if (! (bfd_elf_size_dynamic_sections
yann@475
    25
 	 (link_info.output_bfd, command_line.soname, rpath,
yann@475
    26
 	  command_line.filter_shlib,