diff options
| author | Koen Kooi <koen@dominion.thruhere.net> | 2012-03-23 08:22:26 +0100 |
|---|---|---|
| committer | Koen Kooi <koen@dominion.thruhere.net> | 2012-03-24 07:35:22 +0100 |
| commit | ff0f815593c33f1a82ba4d1cbe41e6b987da1f47 (patch) | |
| tree | 22b43fa2e84f25cc948df79f9e9de07e8ec57418 /meta-oe/recipes-devtools/gcc/libgcc_4.5.bb | |
| parent | 6b22bd198a87b5f113971d8fcd0e7211cd143c7d (diff) | |
| download | meta-openembedded-ff0f815593c33f1a82ba4d1cbe41e6b987da1f47.tar.gz | |
toolchain-layer: move binutils and gcc from meta-oe into here
Acked-by: Martin Jansa <Martin.Jansa@gmail.com>
Acked-by: Eric Bénard <eric@eukrea.com>
Acked-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-oe/recipes-devtools/gcc/libgcc_4.5.bb')
| -rw-r--r-- | meta-oe/recipes-devtools/gcc/libgcc_4.5.bb | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/meta-oe/recipes-devtools/gcc/libgcc_4.5.bb b/meta-oe/recipes-devtools/gcc/libgcc_4.5.bb deleted file mode 100644 index 1579c8b962..0000000000 --- a/meta-oe/recipes-devtools/gcc/libgcc_4.5.bb +++ /dev/null | |||
| @@ -1,42 +0,0 @@ | |||
| 1 | require recipes-devtools/gcc/gcc-${PV}.inc | ||
| 2 | |||
| 3 | |||
| 4 | INHIBIT_DEFAULT_DEPS = "1" | ||
| 5 | DEPENDS = "virtual/${TARGET_PREFIX}gcc virtual/${TARGET_PREFIX}g++" | ||
| 6 | |||
| 7 | PACKAGES = "\ | ||
| 8 | ${PN} \ | ||
| 9 | ${PN}-dev \ | ||
| 10 | " | ||
| 11 | |||
| 12 | FILES_${PN} = "${base_libdir}/libgcc*.so.*" | ||
| 13 | FILES_${PN}-dev = " \ | ||
| 14 | ${base_libdir}/libgcc*.so \ | ||
| 15 | ${libdir}/${TARGET_SYS}/${BINV}/crt* \ | ||
| 16 | ${libdir}/${TARGET_SYS}/${BINV}/libgcov.a \ | ||
| 17 | ${libdir}/${TARGET_SYS}/${BINV}/libgcc*" | ||
| 18 | |||
| 19 | do_fetch[noexec] = "1" | ||
| 20 | do_unpack[noexec] = "1" | ||
| 21 | do_patch[noexec] = "1" | ||
| 22 | do_configure[noexec] = "1" | ||
| 23 | do_compile[noexec] = "1" | ||
| 24 | |||
| 25 | do_install () { | ||
| 26 | target=`echo ${MULTIMACH_TARGET_SYS} | sed -e s#-nativesdk##` | ||
| 27 | |||
| 28 | # Install libgcc from our gcc-cross saved data | ||
| 29 | install -d ${D}${base_libdir} ${D}${libdir} | ||
| 30 | cp -fpPR ${STAGING_INCDIR_NATIVE}/gcc-build-internal-$target/* ${D} | ||
| 31 | |||
| 32 | # Move libgcc_s into /lib | ||
| 33 | mkdir -p ${D}${base_libdir} | ||
| 34 | if [ -f ${D}${libdir}/nof/libgcc_s.so ]; then | ||
| 35 | mv ${D}${libdir}/nof/libgcc* ${D}${base_libdir} | ||
| 36 | else | ||
| 37 | mv ${D}${libdir}/libgcc* ${D}${base_libdir} || true | ||
| 38 | fi | ||
| 39 | } | ||
| 40 | |||
| 41 | BBCLASSEXTEND = "nativesdk" | ||
| 42 | |||
