summaryrefslogtreecommitdiff
path: root/binutils/patches/128_ppc64_powerpc_biarch.patch
blob: b572db40670554bb3f9a9732b49e03d0a2389737 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--- a/ld/emulparams/elf32ppccommon.sh	2011-03-01 21:36:22.239025005 +0000
+++ b/ld/emulparams/elf32ppccommon.sh	2011-03-01 21:38:13.187024999 +0000
@@ -48,3 +48,12 @@
 case "$EMULATION_NAME" in
   *64*) LIBPATH_SUFFIX=64 ;;
 esac
+
+# On 64bit, look for 32 bit target libraries in /lib32, /usr/lib32 etc., first.
+case "$target" in
+  powerpc64-*-linux* | ppc64-*-linux*)
+    case "$EMULATION_NAME" in
+      *32*) LIBPATH_SUFFIX=32 ;;
+    esac
+    ;;
+esac