diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-06-08 20:33:16 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-06-08 20:33:16 +0100 |
commit | f47eeddbd692ac3c6109c18c9f04a3ad4dc789ba (patch) | |
tree | abe9f2ef67deb85c5cde312123b53aac4daaf225 /meta/packages/gcc/gcc-package-runtime.inc | |
parent | d579b7c746b7113d5a4867b851ed2dc7733299a8 (diff) | |
download | openembedded-core-f47eeddbd692ac3c6109c18c9f04a3ad4dc789ba.tar.gz openembedded-core-f47eeddbd692ac3c6109c18c9f04a3ad4dc789ba.tar.bz2 openembedded-core-f47eeddbd692ac3c6109c18c9f04a3ad4dc789ba.zip |
gcc-runtime: Various bug fixes
* Use the -nostdinc++ to CXX fixing libstdc++
* Generate libgcc in gcc-cross, save the result and use in gcc-runtime
* Fix the layout of the crt*.o files so the SDK compiler can find them
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/packages/gcc/gcc-package-runtime.inc')
-rw-r--r-- | meta/packages/gcc/gcc-package-runtime.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/packages/gcc/gcc-package-runtime.inc b/meta/packages/gcc/gcc-package-runtime.inc index 908d2d513c..40a9ed0d70 100644 --- a/meta/packages/gcc/gcc-package-runtime.inc +++ b/meta/packages/gcc/gcc-package-runtime.inc @@ -17,8 +17,8 @@ PACKAGES = "\ FILES_libgcc = "${base_libdir}/libgcc*.so.*" FILES_libgcc-dev = " \ ${base_libdir}/libgcc*.so \ - ${libdir}/gcc/${TARGET_SYS}/${BINV}/crt* \ - ${libdir}/gcc/${TARGET_SYS}/${BINV}/libgcc*" + ${libdir}/${TARGET_SYS}/${BINV}/crt* \ + ${libdir}/${TARGET_SYS}/${BINV}/libgcc*" FILES_libg2c = "${target_libdir}/libg2c.so.*" FILES_libg2c-dev = "\ |