Blame SOURCES/binutils-2.20.51.0.2-ia64-lib64.patch

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