[oe-commits] Khem Raj : gcc-cross-intermediate.inc: Move libgcc from cross dir to target sysroot

git version control git at git.openembedded.org
Fri Oct 15 23:42:42 UTC 2010


Module: openembedded.git
Branch: master
Commit: df2f9a5553c33acfe749e7be7291166f62361691
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=df2f9a5553c33acfe749e7be7291166f62361691

Author: Khem Raj <raj.khem at gmail.com>
Date:   Thu Oct 14 23:40:37 2010 -0700

gcc-cross-intermediate.inc: Move libgcc from cross dir to target sysroot

shared version of libgcc is also installed by gcc-cross-intermediate
which we did not move to staging as a result cross gcc found this libgcc
and used it compailing about missing libc.so stuff.

Signed-off-by: Khem Raj <raj.khem at gmail.com>

---

 recipes/gcc/gcc-cross-intermediate.inc |   10 +++++++++-
 1 files changed, 9 insertions(+), 1 deletions(-)

diff --git a/recipes/gcc/gcc-cross-intermediate.inc b/recipes/gcc/gcc-cross-intermediate.inc
index 6dbdb94..2b6b24f 100644
--- a/recipes/gcc/gcc-cross-intermediate.inc
+++ b/recipes/gcc/gcc-cross-intermediate.inc
@@ -18,8 +18,16 @@ EXTRA_OECONF = "--with-local-prefix=${STAGING_DIR_TARGET}${target_prefix} \
 		${@get_gcc_mips_plt_setting(bb, d)}"
 
 do_install () {
-	oe_runmake 'DESTDIR=${D}' install
+        oe_runmake 'DESTDIR=${D}' install
+        install -d ${D}${target_base_libdir}
+        install -d ${D}${target_libdir}
 
+        for d in ${TARGET_SYS}/lib/nof ${TARGET_SYS}/lib64 ${TARGET_SYS}/lib; do
+                if [ -d ${D}${prefix}/$d/ ]; then
+                        mv -f ${D}${prefix}/$d/libgcc* ${D}${target_base_libdir} || true
+                        mv -f ${D}${prefix}/$d/* ${D}${target_libdir} || true
+                fi
+        done
     # If this is important, we should remove the staging package here
 	# get rid of dummy libc.so
 	#if [ -z "`file ${STAGING_DIR_TARGET}${target_libdir}/libc.so | grep "ASCII C program text"`" ]; then





More information about the Openembedded-commits mailing list