diff options
author | Nitin A Kamble <nitin.a.kamble@intel.com> | 2011-05-11 16:55:04 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-05-13 10:29:02 +0100 |
commit | 021e79298848a89beb34f5a387d830ae8454bf82 (patch) | |
tree | d5cca512d2428f8be3a7306a1bdd0a3f39744b79 /meta/recipes-devtools/gcc/gcc-package-target.inc | |
parent | b0e6fc76a853c3c151825b3fcc47896b0845fbce (diff) | |
download | poky-021e79298848a89beb34f5a387d830ae8454bf82.tar.gz |
gcc: fix target gcc runtime issue
The liblto_plugin.so file is not packages for the target recipe causing this
gcc failure on the target.
gcc: fatal error: -fuse-linker-plugin, but liblto_plugin.so not found
(From OE-Core rev: a121494f9bdebb940e3f2f121040988be6dca592)
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-package-target.inc')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-package-target.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-package-target.inc b/meta/recipes-devtools/gcc/gcc-package-target.inc index e7f1b80894..afbcf0d2af 100644 --- a/meta/recipes-devtools/gcc/gcc-package-target.inc +++ b/meta/recipes-devtools/gcc/gcc-package-target.inc | |||
@@ -12,6 +12,7 @@ FILES_${PN} = "\ | |||
12 | ${bindir}/${TARGET_PREFIX}gcc \ | 12 | ${bindir}/${TARGET_PREFIX}gcc \ |
13 | ${bindir}/${TARGET_PREFIX}gccbug \ | 13 | ${bindir}/${TARGET_PREFIX}gccbug \ |
14 | ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/collect2 \ | 14 | ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/collect2 \ |
15 | ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/* \ | ||
15 | ${gcclibdir}/${TARGET_SYS}/${BINV}/*.o \ | 16 | ${gcclibdir}/${TARGET_SYS}/${BINV}/*.o \ |
16 | ${gcclibdir}/${TARGET_SYS}/${BINV}/specs \ | 17 | ${gcclibdir}/${TARGET_SYS}/${BINV}/specs \ |
17 | ${gcclibdir}/${TARGET_SYS}/${BINV}/lib* \ | 18 | ${gcclibdir}/${TARGET_SYS}/${BINV}/lib* \ |