mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-12-14 14:25:53 +01:00
From: Dexuan Cui <dexuan.cui@intel.com> Date: Sat, 15 Jan 2011 10:47:50 +0000 Subject: libgcc: use the new recipe (rather than gcc-runtime) to install libgcc_s.so* and crt*.o Currently gcc-runtime installs the files, but actually gcc-runtime's do_configure checks if the files are available, so before we build gcc-runtime, we should have some recipe install the files first! -- currently gcc-cross-intermediate actually does that(gcc-cross also installs the files, but it installs into the gcc-build-internal* directory), but gcc-cross-intermediate will have its own sysroot in future, after that, gcc-runtime won't build. So let us add this new target recipe and move the installation of the files from gcc-runtime into it changed to apply to gcc 4.5 Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
51 lines
1.1 KiB
PHP
51 lines
1.1 KiB
PHP
PACKAGES = "\
|
|
libstdc++ \
|
|
libstdc++-precompile-dev \
|
|
libstdc++-dev \
|
|
libg2c \
|
|
libg2c-dev \
|
|
libssp \
|
|
libssp-dev \
|
|
libgfortran \
|
|
libgfortran-dev \
|
|
libmudflap \
|
|
libmudflap-dev \
|
|
"
|
|
|
|
FILES_libg2c = "${target_libdir}/libg2c.so.*"
|
|
FILES_libg2c-dev = "\
|
|
${libdir}/libg2c.so \
|
|
${libdir}/libg2c.a \
|
|
${libdir}/libfrtbegin.a"
|
|
|
|
FILES_libstdc++ = "${libdir}/libstdc++.so.*"
|
|
FILES_libstdc++-dev = "\
|
|
${includedir}/c++/ \
|
|
${libdir}/libstdc++.so \
|
|
${libdir}/libstdc++.la \
|
|
${libdir}/libstdc++.a \
|
|
${libdir}/libsupc++.la \
|
|
${libdir}/libsupc++.a"
|
|
|
|
FILES_libstdc++-precompile-dev = "${includedir}/c++/${TARGET_SYS}/bits/*.gch"
|
|
|
|
FILES_libssp = "${libdir}/libssp.so.*"
|
|
FILES_libssp-dev = " \
|
|
${libdir}/libssp*.so \
|
|
${libdir}/libssp*.a \
|
|
${libdir}/libssp*.la \
|
|
${libdir}/gcc/${TARGET_SYS}/${BINV}/include/ssp"
|
|
|
|
FILES_libgfortran = "${libdir}/libgfortran.so.*"
|
|
FILES_libgfortran-dev = " \
|
|
${libdir}/libgfortran.a \
|
|
${libdir}/libgfortran.so \
|
|
${libdir}/libgfortranbegin.a"
|
|
|
|
FILES_libmudflap = "${libdir}/libmudflap*.so.*"
|
|
FILES_libmudflap-dev = "\
|
|
${libdir}/libmudflap*.so \
|
|
${libdir}/libmudflap*.a \
|
|
${libdir}/libmudflap*.la"
|
|
|