diff options
author | John Bowler <jbowler@nslu2-linux.org> | 2005-09-22 19:36:38 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-09-22 19:36:38 +0000 |
commit | 3b98fa7d6706063736b5a910fc1228c747dabeb5 (patch) | |
tree | de4a0ab8cd6de843f21b47fdb834925435f1a27f /packages/binutils/binutils_2.16.bb | |
parent | b58e9513f43d78e54c5f21938f74af0bccd75199 (diff) |
binutils_2.16: patch thumb trampoline and glue code generation
This patch fixes problems with the ARM thumb specific code generation. It
also adds debugging to bfd/elf32-arm.c to detect ref counting problems -
one error message can fire in theory in the absence of thumb support if
a union refcount field is used to refcount when it is set to something else.
The error should be ignorable, in that the code should not have changed in
effect.
Diffstat (limited to 'packages/binutils/binutils_2.16.bb')
-rw-r--r-- | packages/binutils/binutils_2.16.bb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/packages/binutils/binutils_2.16.bb b/packages/binutils/binutils_2.16.bb index 046f2c15c7..bb66ca6741 100644 --- a/packages/binutils/binutils_2.16.bb +++ b/packages/binutils/binutils_2.16.bb @@ -3,7 +3,7 @@ HOMEPAGE = "http://www.gnu.org/software/binutils/" SECTION = "devel" LICENSE = "GPL" MAINTAINER = "Gerald Britton <gbritton@doomcom.org>" -PR = "r2" +PR = "r3" SRC_URI = \ "http://ftp.gnu.org/gnu/binutils/binutils-${PV}.tar.bz2 \ @@ -15,6 +15,10 @@ SRC_URI = \ # uclibc patches SRC_URI += "file://binutils-2.16-linux-uclibc.patch;patch=1" +# thumb support patches +SRC_URI += "file://binutils-2.16-thumb-trampoline.patch;patch=1" +SRC_URI += "file://binutils-2.16-thumb-glue.patch;patch=1" + #to be removed: # this patch does not seem to do anything any longer #SRC_URI += "file://binutils-2.15.90.0.3-uclibc-200-build_modules.patch;patch=1" |