diff options
author | Khem Raj <raj.khem@gmail.com> | 2009-03-20 12:28:27 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2009-03-20 12:28:27 -0700 |
commit | 8d0b0994a86b2800363b7d1ab4384bd87fb94f6a (patch) | |
tree | ea45aabd41a00c38565bb10340f2fc60bc4414be /recipes/uclibc/uclibc_nptl.bb | |
parent | a7b83866a10c1487125720d7583b9f6935ea9e61 (diff) |
uclibc: Get uclibc working in thumb mode.
* WARNING!! Do not use bintils 2.19 or 2.19.1
when compiling in thumb mode. The veneer generation
does not work as expected. Use binutils 2.18 or binutils_cvs
* Move LEAD_SONAME into uclibc.inc
* Use no optimizations while compiling ldso.c
to over come a gcc ICE
* Use ARM mode resolver for thumb mode. The
resolver depends on ip register and if we
use thumb function for _dl_linux_resolve then
it adds a veneer which corrupts ip.
Diffstat (limited to 'recipes/uclibc/uclibc_nptl.bb')
-rw-r--r-- | recipes/uclibc/uclibc_nptl.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/recipes/uclibc/uclibc_nptl.bb b/recipes/uclibc/uclibc_nptl.bb index a43a3dfacd..7b3ef1594a 100644 --- a/recipes/uclibc/uclibc_nptl.bb +++ b/recipes/uclibc/uclibc_nptl.bb @@ -29,7 +29,8 @@ SRC_URI += "svn://uclibc.org/branches/;module=uClibc-nptl;rev=${SRCREV} \ file://uClibc.machine \ file://uClibc.distro \ file://uclibc-arm-ftruncate64.patch;patch=1 \ - file://arm_fix_alignment.patch;patch=1 \ + file://uclibc_ldso_use_O0.patch;patch=1 \ + file://ldso_use_arm_dl_linux_resolve_in_thumb_mode.patch;patch=1 \ " S = "${WORKDIR}/uClibc-nptl" |