diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-04-24 15:24:09 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-04-25 17:19:18 +0100 |
commit | 5f993cb112bf0b7a188efbe2a9580997509418fd (patch) | |
tree | 369c704ed6c80ca007a9ac081d7bb6de6e2fe495 /meta/recipes-devtools/gcc/gcc-cross-initial.inc | |
parent | ee758b69276d3ef8bdd7040ec8725cec2b4bad7c (diff) | |
download | poky-5f993cb112bf0b7a188efbe2a9580997509418fd.tar.gz |
gcc-cross-initial: Separate out libgcc-initial
Its useful to separate out the native (cross) binaries from the target
compilation. We already do this for libgcc, this now takes the same
approach for -initial.
(From OE-Core rev: 8a2aaf8b6bdca2d28c0047093c7f668750d57666)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-cross-initial.inc')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-cross-initial.inc | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-cross-initial.inc b/meta/recipes-devtools/gcc/gcc-cross-initial.inc index 81845386f9..3870168863 100644 --- a/meta/recipes-devtools/gcc/gcc-cross-initial.inc +++ b/meta/recipes-devtools/gcc/gcc-cross-initial.inc | |||
@@ -38,10 +38,11 @@ do_configure_prepend () { | |||
38 | } | 38 | } |
39 | 39 | ||
40 | do_compile () { | 40 | do_compile () { |
41 | oe_runmake all-gcc all-target-libgcc | 41 | oe_runmake all-gcc configure-target-libgcc |
42 | } | 42 | } |
43 | do_install () { | 43 | do_install () { |
44 | oe_runmake 'DESTDIR=${D}' install-gcc install-target-libgcc | 44 | ( cd ${B}/${TARGET_SYS}/libgcc; oe_runmake 'DESTDIR=${D}' install-unwind_h ) |
45 | oe_runmake 'DESTDIR=${D}' install-gcc | ||
45 | 46 | ||
46 | # We don't really need this (here shares/ contains man/, info/, locale/). | 47 | # We don't really need this (here shares/ contains man/, info/, locale/). |
47 | rm -rf ${D}${datadir}/ | 48 | rm -rf ${D}${datadir}/ |
@@ -64,6 +65,14 @@ do_install () { | |||
64 | # so we overwirte the generated include-fixed/limits.h for gcc-cross-initial | 65 | # so we overwirte the generated include-fixed/limits.h for gcc-cross-initial |
65 | # to get rid references to real limits.h | 66 | # to get rid references to real limits.h |
66 | cp gcc/include-fixed/limits.h ${D}${gcclibdir}/${TARGET_SYS}/${BINV}/include-fixed/limits.h | 67 | cp gcc/include-fixed/limits.h ${D}${gcclibdir}/${TARGET_SYS}/${BINV}/include-fixed/limits.h |
68 | |||
69 | # gcc-runtime installs libgcc into a special location in staging since it breaks doing a standalone build | ||
70 | case ${PN} in | ||
71 | *gcc-cross-initial|*gcc-crosssdk-initial) | ||
72 | dest=${D}/${includedir}/gcc-build-internal-initial-${MULTIMACH_TARGET_SYS} | ||
73 | hardlinkdir . $dest | ||
74 | ;; | ||
75 | esac | ||
67 | } | 76 | } |
68 | # | 77 | # |
69 | # Override the default sysroot staging copy since this won't look like a target system | 78 | # Override the default sysroot staging copy since this won't look like a target system |