gcc-runtime: Make sure multiple target builds work correctly

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Richard Purdie 2010-06-07 23:08:02 +01:00
parent 6118da2a7f
commit 2f7b3e3f31
2 changed files with 4 additions and 4 deletions

View File

@ -13,7 +13,7 @@ RUNTIMETARGET = "libgcc libssp libstdc++-v3"
# libgfortran
do_configure () {
cp ${STAGING_DIR_NATIVE}${prefix_native}/include/gcc-build-internal/* ${S}/gcc
cp ${STAGING_DIR_NATIVE}${prefix_native}/include/gcc-build-internal-${TARGET_SYS}/* ${S}/gcc
for d in ${RUNTIMETARGET}; do
echo "Configuring $d"
mkdir -p ${B}/$d/

View File

@ -20,14 +20,14 @@ do_install () {
if [ "${PN}" == "gcc-cross" -o "${PN}" == "gcc-crosssdk" ]; then
install -d ${D}${includedir}/gcc-build-internal
for f in *.h *.c libgcc.mvars; do
cp ${B}/gcc/$f ${D}${includedir}/gcc-build-internal/
cp ${B}/gcc/$f ${D}${includedir}/gcc-build-internal-${TARGET_SYS}/
done
# Special for PowerPC (and possibly others)
if [ -f ${B}/gcc/tramp.S ]; then
cp ${B}/gcc/*.S ${D}${includedir}/gcc-build-internal/
cp ${B}/gcc/*.S ${D}${includedir}/gcc-build-internal-${TARGET_SYS}/
fi
if [ -f libgcc.mvars]; then
cp ${B}/gcc/libgcc.mvars ${D}${includedir}/gcc-build-internal/
cp ${B}/gcc/libgcc.mvars ${D}${includedir}/gcc-build-internal-${TARGET_SYS}/
fi
fi
}