summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorMark Hatle <mark.hatle@windriver.com>2011-03-10 17:52:20 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-03-10 18:46:03 -0800
commit84b877ba360a49ce710ed652e67b1c019628b4c5 (patch)
tree064a6762fe900f773f5b1e1b2d5a489cf08fe96f /meta
parentc180383885e32aed83c4f8691115859966fb53be (diff)
downloadpoky-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')
-rw-r--r--meta/recipes-devtools/gcc/gcc-package-runtime.inc5
-rw-r--r--meta/recipes-devtools/gcc/gcc-runtime_4.5.1.bb2
2 files changed, 6 insertions, 1 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.
16RRECOMMENDS_${PN}-dbg = "" 16RRECOMMENDS_${PN}-dbg = ""
17 17
18# include python debugging scripts
19FILES_${PN}-dbg += "\
20 ${libdir}/libstdc++.so.*-gdb.py \
21 ${datadir}/gcc-${PV}/python/libstdcxx"
22
18FILES_libg2c = "${target_libdir}/libg2c.so.*" 23FILES_libg2c = "${target_libdir}/libg2c.so.*"
19FILES_libg2c-dev = "\ 24FILES_libg2c-dev = "\
20 ${libdir}/libg2c.so \ 25 ${libdir}/libg2c.so \
diff --git a/meta/recipes-devtools/gcc/gcc-runtime_4.5.1.bb b/meta/recipes-devtools/gcc/gcc-runtime_4.5.1.bb
index c1e680d3c0..9eb658b12c 100644
--- a/meta/recipes-devtools/gcc/gcc-runtime_4.5.1.bb
+++ b/meta/recipes-devtools/gcc/gcc-runtime_4.5.1.bb
@@ -1,4 +1,4 @@
1PR = "r3" 1PR = "r4"
2 2
3require gcc-${PV}.inc 3require gcc-${PV}.inc
4require gcc-configure-runtime.inc 4require gcc-configure-runtime.inc