diff options
author | John Bowler <jbowler@nslu2-linux.org> | 2006-01-21 00:07:41 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-01-21 00:07:41 +0000 |
commit | 8c9e9a740a81d8433c64242d499768972f31bbdd (patch) | |
tree | 57d5654d8db2e2c36289efd36493f6925b1d8cad /packages/uclibc/uclibc-cvs/thumb-defined-arm-or-thumb.patch | |
parent | fff27a537eb7305d05e8052593a6359a4f0b0b74 (diff) |
uclibc: updated thumb patch set (compiles, doesn't work) in svn
- this updates the patch set to svn 20060120, the patches now apply
but the result is non-functional (completely).
Diffstat (limited to 'packages/uclibc/uclibc-cvs/thumb-defined-arm-or-thumb.patch')
-rw-r--r-- | packages/uclibc/uclibc-cvs/thumb-defined-arm-or-thumb.patch | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/packages/uclibc/uclibc-cvs/thumb-defined-arm-or-thumb.patch b/packages/uclibc/uclibc-cvs/thumb-defined-arm-or-thumb.patch index c31d2f03cd..6b73301bf7 100644 --- a/packages/uclibc/uclibc-cvs/thumb-defined-arm-or-thumb.patch +++ b/packages/uclibc/uclibc-cvs/thumb-defined-arm-or-thumb.patch @@ -2,14 +2,14 @@ # is ARM specific, that code must also be selected for __thumb__ because # __thumb__ is an ARM but __arm__ is not set... # ---- ./ldso/include/dl-string.h.orig 2005-09-07 14:09:19.375564254 -0700 -+++ ./ldso/include/dl-string.h 2005-09-07 14:09:52.045620051 -0700 -@@ -270,7 +270,7 @@ +--- uClibc/ldso/include/dl-string.h.orig 2006-01-19 19:03:42.000000000 -0800 ++++ uClibc/ldso/include/dl-string.h 2006-01-19 19:28:15.141758294 -0800 +@@ -276,7 +276,7 @@ static __always_inline char * _dl_simple /* On some arches constant strings are referenced through the GOT. * This requires that load_addr must already be defined... */ --#if defined(mc68000) || defined(__arm__) || defined(__mips__) \ -+#if defined(mc68000) || defined(__arm__) || defined(__thumb__) || defined(__mips__) \ - || defined(__sh__) || defined(__powerpc__) +-#if defined(mc68000) || defined(__arm__) || defined(__mips__) \ ++#if defined(mc68000) || defined(__arm__) || defined(__thumb__) || defined(__mips__) \ + || defined(__sh__) || defined(__powerpc__) # define CONSTANT_STRING_GOT_FIXUP(X) \ if ((X) < (const char *) load_addr) (X) += load_addr |