summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/gcc/gcc-configure-runtime.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-configure-runtime.inc')
-rw-r--r--meta/recipes-devtools/gcc/gcc-configure-runtime.inc7
1 files changed, 7 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-configure-runtime.inc b/meta/recipes-devtools/gcc/gcc-configure-runtime.inc
index 095d6c16d2..d40383cea5 100644
--- a/meta/recipes-devtools/gcc/gcc-configure-runtime.inc
+++ b/meta/recipes-devtools/gcc/gcc-configure-runtime.inc
@@ -8,6 +8,8 @@ EXTRA_OECONF_PATHS = " \
8 --with-build-sysroot=${STAGING_DIR_TARGET}" 8 --with-build-sysroot=${STAGING_DIR_TARGET}"
9 9
10RUNTIMETARGET = "libssp libstdc++-v3" 10RUNTIMETARGET = "libssp libstdc++-v3"
11RUNTIMETARGET_append_powerpc = " libgomp"
12RUNTIMETARGET_append_powerpc64 = " libgomp"
11# ? 13# ?
12# libiberty 14# libiberty
13# libmudflap 15# libmudflap
@@ -41,6 +43,11 @@ do_install () {
41 for d in ${RUNTIMETARGET}; do 43 for d in ${RUNTIMETARGET}; do
42 cd ${B}/$target/$d/ 44 cd ${B}/$target/$d/
43 oe_runmake 'DESTDIR=${D}' MULTIBUILDTOP=${B}/$target/$d/ install 45 oe_runmake 'DESTDIR=${D}' MULTIBUILDTOP=${B}/$target/$d/ install
46 if [ "$d" = "libgomp" ]; then
47 rm -rf ${D}${datadir}/info/libgomp.info ${D}${datadir}/info/dir
48 rmdir --ignore-fail-on-non-empty -p ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/finclude
49 rmdir --ignore-fail-on-non-empty -p ${D}${datadir}/info
50 fi
44 done 51 done
45 chown -R root:root ${D} 52 chown -R root:root ${D}
46} 53}