diff options
author | Khem Raj <raj.khem@gmail.com> | 2012-02-23 19:07:46 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-04-26 14:48:48 +0100 |
commit | 7cf9f0597648c0bdaa080976d74acfbfc4c8443d (patch) | |
tree | 14766144daa76a935eb970bf250cd20a334cdb72 /meta/recipes-devtools/gcc/gcc-cross-initial.inc | |
parent | 0e904103e9bd7fdb31bfcc129067511f9f45701b (diff) | |
download | openembedded-core-7cf9f0597648c0bdaa080976d74acfbfc4c8443d.tar.gz openembedded-core-7cf9f0597648c0bdaa080976d74acfbfc4c8443d.tar.bz2 openembedded-core-7cf9f0597648c0bdaa080976d74acfbfc4c8443d.zip |
gcc: Stash the gcc-cross builddir to reuse in libgcc and gcc-runtime
Currently we stash the libgcc install tree and then reuse that
to populate libgcc recipe later. This mechanism does not work
for gcc 4.7/trunk since now libstdc++ needs access to build tree
of libgcc. This patch stashes the gcc-cross build tree
and then reuses this in libgcc as well as in gcc-runtime
recipe builds.
Now we build libgcc in the libgcc recipe instead of just
using the prebuilt install tree
core-image-minimal build/run tested on all qemu machines
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-cross-initial.inc')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-cross-initial.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-cross-initial.inc b/meta/recipes-devtools/gcc/gcc-cross-initial.inc index f0e7810273..66c47e027c 100644 --- a/meta/recipes-devtools/gcc/gcc-cross-initial.inc +++ b/meta/recipes-devtools/gcc/gcc-cross-initial.inc @@ -25,5 +25,5 @@ EXTRA_OECONF = "--with-local-prefix=${STAGING_DIR_TARGET}${target_prefix} \ ${@get_gcc_fpu_setting(bb, d)}" do_compile () { - oe_runmake + oe_runmake all-gcc all-target-libgcc } |