diff options
author | Dexuan Cui <dexuan.cui@intel.com> | 2011-01-15 18:47:50 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-01-17 22:04:50 +0000 |
commit | 0df3c481309e89b93e8a57773eb9c470b4dd13a7 (patch) | |
tree | d8f0bbaa5672dee61273d5502546409034d0a5d8 /meta/recipes-devtools/gcc/gcc-package-runtime.inc | |
parent | 2ce2c1e6f9c5196c4346c3839bf594dd821c20ee (diff) | |
download | poky-0df3c481309e89b93e8a57773eb9c470b4dd13a7.tar.gz |
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.
Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-package-runtime.inc')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-package-runtime.inc | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-package-runtime.inc b/meta/recipes-devtools/gcc/gcc-package-runtime.inc index 40a9ed0d70..e8c901131e 100644 --- a/meta/recipes-devtools/gcc/gcc-package-runtime.inc +++ b/meta/recipes-devtools/gcc/gcc-package-runtime.inc | |||
@@ -1,6 +1,4 @@ | |||
1 | PACKAGES = "\ | 1 | PACKAGES = "\ |
2 | libgcc \ | ||
3 | libgcc-dev \ | ||
4 | libstdc++ \ | 2 | libstdc++ \ |
5 | libstdc++-precompile-dev \ | 3 | libstdc++-precompile-dev \ |
6 | libstdc++-dev \ | 4 | libstdc++-dev \ |
@@ -14,12 +12,6 @@ PACKAGES = "\ | |||
14 | libmudflap-dev \ | 12 | libmudflap-dev \ |
15 | " | 13 | " |
16 | 14 | ||
17 | FILES_libgcc = "${base_libdir}/libgcc*.so.*" | ||
18 | FILES_libgcc-dev = " \ | ||
19 | ${base_libdir}/libgcc*.so \ | ||
20 | ${libdir}/${TARGET_SYS}/${BINV}/crt* \ | ||
21 | ${libdir}/${TARGET_SYS}/${BINV}/libgcc*" | ||
22 | |||
23 | FILES_libg2c = "${target_libdir}/libg2c.so.*" | 15 | FILES_libg2c = "${target_libdir}/libg2c.so.*" |
24 | FILES_libg2c-dev = "\ | 16 | FILES_libg2c-dev = "\ |
25 | ${libdir}/libg2c.so \ | 17 | ${libdir}/libg2c.so \ |