Blame binutils-2.20.51.0.2-ia64-lib64.patch

172ecb8
2004-05-14  Jakub Jelinek  <jakub@redhat.com>
172ecb8
172ecb8
	* emulparams/elf64_ia64.sh (LIBPATH_SUFFIX): Use */lib64 paths on
172ecb8
	ia64-linux if /lib64 tree is present.
172ecb8
172ecb8
--- ../binutils-2.19.50.0.1.orig/ld/emulparams/elf64_ia64.sh	2008-11-21 16:45:00.000000000 +0000
172ecb8
+++ ld/emulparams/elf64_ia64.sh	2008-11-21 16:55:46.000000000 +0000
172ecb8
@@ -38,3 +38,13 @@ OTHER_READONLY_SECTIONS="${OTHER_READONL
172ecb8
 SMALL_DATA_CTOR=" "
172ecb8
 SMALL_DATA_DTOR=" "
172ecb8
 SHARABLE_SECTIONS=yes
172ecb8
+
172ecb8
+# For Linux modify the default library search path
172ecb8
+# to first include a 64-bit specific directory.
172ecb8
+case "$target" in
172ecb8
+  ia64*-linux*)
172ecb8
+    case "$EMULATION_NAME" in
172ecb8
+      *64*) test -d /lib64 && LIBPATH_SUFFIX=64 ;;
172ecb8
+    esac
172ecb8
+    ;;
172ecb8
+esac