[arch-commits] Commit in binutils/trunk (PKGBUILD binutils-2.22-ld-13621.patch)

Allan McRae allan at archlinux.org
Mon Apr 23 13:44:57 UTC 2012


    Date: Monday, April 23, 2012 @ 09:44:56
  Author: allan
Revision: 157081

upgpkg: binutils 2.22-6

upstream bugfix for gcc-4.7 backport

Added:
  binutils/trunk/binutils-2.22-ld-13621.patch
Modified:
  binutils/trunk/PKGBUILD

------------------------------+
 PKGBUILD                     |   12 +++++++++---
 binutils-2.22-ld-13621.patch |   27 +++++++++++++++++++++++++++
 2 files changed, 36 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2012-04-23 13:11:44 UTC (rev 157080)
+++ PKGBUILD	2012-04-23 13:44:56 UTC (rev 157081)
@@ -5,7 +5,7 @@
 
 pkgname=binutils
 pkgver=2.22
-pkgrel=5
+pkgrel=6
 _date=20120323
 pkgdesc="A set of programs to assemble and manipulate binary and object files"
 arch=('i686' 'x86_64')
@@ -16,8 +16,10 @@
 checkdepends=('dejagnu')
 options=('!libtool' '!distcc' '!ccache')
 install=binutils.install
-source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}_${_date}.tar.bz2)
-md5sums=('de2ac4298732827f8af706fc24020330')
+source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}_${_date}.tar.bz2
+        binutils-2.22-ld-13621.patch)
+md5sums=('de2ac4298732827f8af706fc24020330'
+         '86d9445914c9d51bfe575ecbac265be0')
 
 mksource() {
   mkdir ${pkgname}-${_date}
@@ -30,6 +32,10 @@
 }
 
 build() {
+  cd ${srcdir}/binutils
+  # http://sourceware.org/bugzilla/show_bug.cgi?id=13621
+  patch -p1 -i $srcdir/binutils-2.22-ld-13621.patch
+
   cd ${srcdir}
   mkdir binutils-build && cd binutils-build
 

Added: binutils-2.22-ld-13621.patch
===================================================================
--- binutils-2.22-ld-13621.patch	                        (rev 0)
+++ binutils-2.22-ld-13621.patch	2012-04-23 13:44:56 UTC (rev 157081)
@@ -0,0 +1,27 @@
+diff --git a/bfd/linker.c b/bfd/linker.c
+index c51c5df..0404474 100644
+--- a/bfd/linker.c
++++ b/bfd/linker.c
+@@ -3208,6 +3208,12 @@ fix_syms (struct bfd_link_hash_entry *h, void *data)
+ 		op = op1;
+ 	    }
+ 
++	  /* Refuse to choose a section for which we are out of bounds.  */
++	  /* ??? This may make most of the above moot.  */
++	  if (h->u.def.value < op->vma
++	      || h->u.def.value > op->vma + op->size)
++	    op = bfd_abs_section_ptr;
++
+ 	  h->u.def.value -= op->vma;
+ 	  h->u.def.section = op;
+ 	}
+index 95b7ef4..a9c05f9 100644
+--- a/ld/testsuite/ld-elf/warn2.d
++++ b/ld/testsuite/ld-elf/warn2.d
+@@ -13,5 +13,5 @@
+ # construct and that the symbol still appears as expected.
+ 
+ #...
+- +[0-9]+: +[0-9a-f]+ +20 +OBJECT +GLOBAL +DEFAULT +[1-9] Foo
++ +[0-9]+: +[0-9a-f]+ +20 +OBJECT +GLOBAL +DEFAULT +ABS Foo
+ #pass




More information about the arch-commits mailing list