aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/binutils/binutils-2.20.1/binutils-x86_64_i386_biarch.patch
diff options
context:
space:
mode:
authorPhil Blundell <philb@gnu.org>2010-03-08 20:13:42 +0000
committerPhil Blundell <philb@gnu.org>2010-03-08 20:13:42 +0000
commit2d66520cb9bffaa225d6cc8acef4a349ebad2b82 (patch)
tree722b893a5f97403e79965aae8dc0858b7f63be5d /recipes/binutils/binutils-2.20.1/binutils-x86_64_i386_biarch.patch
parente518bd5129becbfbd65e5fbaf611a5cb363c5273 (diff)
downloadopenembedded-2d66520cb9bffaa225d6cc8acef4a349ebad2b82.tar.gz
binutils: add 2.20.1
Diffstat (limited to 'recipes/binutils/binutils-2.20.1/binutils-x86_64_i386_biarch.patch')
-rw-r--r--recipes/binutils/binutils-2.20.1/binutils-x86_64_i386_biarch.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/recipes/binutils/binutils-2.20.1/binutils-x86_64_i386_biarch.patch b/recipes/binutils/binutils-2.20.1/binutils-x86_64_i386_biarch.patch
new file mode 100644
index 0000000000..4cd9e22438
--- /dev/null
+++ b/recipes/binutils/binutils-2.20.1/binutils-x86_64_i386_biarch.patch
@@ -0,0 +1,26 @@
+#!/bin/sh -e
+## 127_x86_64_i386_biarch.dpatch
+##
+## DP: Description: Add (/usr)/lib32 to the search paths on x86_64.
+## DP: Author: Aurelien Jarno <aurel32.debian.org>
+## DP: Upstream status: Debian specific
+#
+# Hacked to apply with quilt
+# Adapted to binutils 2.18.50.0.7
+
+--- binutils/ld/emulparams/elf_i386.sh
++++ binutils/ld/emulparams/elf_i386.sh
+@@ -12,3 +12,13 @@
+ SEPARATE_GOTPLT=12
+ SHARABLE_SECTIONS=yes
+ IREL_IN_PLT=
++
++# Linux modify the default library search path to first include
++# a 32-bit specific directory.
++case "$target" in
++ x86_64*-linux* | i[3-7]86*-linux* | x86_64*-kfreebsd*-gnu | i[3-7]86*-kfreebsd*-gnu)
++ case "$EMULATION_NAME" in
++ *i386*) LIBPATH_SUFFIX=32 ;;
++ esac
++ ;;
++esac