diff options
author | Mark Hatle <mark.hatle@windriver.com> | 2011-03-10 17:52:20 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-03-10 18:46:03 -0800 |
commit | 84b877ba360a49ce710ed652e67b1c019628b4c5 (patch) | |
tree | 064a6762fe900f773f5b1e1b2d5a489cf08fe96f /meta/recipes-devtools/gcc/gcc-package-runtime.inc | |
parent | c180383885e32aed83c4f8691115859966fb53be (diff) | |
download | poky-84b877ba360a49ce710ed652e67b1c019628b4c5.tar.gz |
gcc-runtime: Fix dbg files
In order to debug certain C++ items, you need the helper python
components. These components should live in the -dbg package, ensure
they are added to the recipe.
(From OE-Core rev: 285fbd8a206eee061e27f37430499fcbe1e7284d)
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-package-runtime.inc')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-package-runtime.inc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-package-runtime.inc b/meta/recipes-devtools/gcc/gcc-package-runtime.inc index 04c70c0e4f..51483f9980 100644 --- a/meta/recipes-devtools/gcc/gcc-package-runtime.inc +++ b/meta/recipes-devtools/gcc/gcc-package-runtime.inc | |||
@@ -15,6 +15,11 @@ PACKAGES = "\ | |||
15 | # The base package doesn't exist, so we clear the recommends. | 15 | # The base package doesn't exist, so we clear the recommends. |
16 | RRECOMMENDS_${PN}-dbg = "" | 16 | RRECOMMENDS_${PN}-dbg = "" |
17 | 17 | ||
18 | # include python debugging scripts | ||
19 | FILES_${PN}-dbg += "\ | ||
20 | ${libdir}/libstdc++.so.*-gdb.py \ | ||
21 | ${datadir}/gcc-${PV}/python/libstdcxx" | ||
22 | |||
18 | FILES_libg2c = "${target_libdir}/libg2c.so.*" | 23 | FILES_libg2c = "${target_libdir}/libg2c.so.*" |
19 | FILES_libg2c-dev = "\ | 24 | FILES_libg2c-dev = "\ |
20 | ${libdir}/libg2c.so \ | 25 | ${libdir}/libg2c.so \ |