summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools
diff options
context:
space:
mode:
authorMark Hatle <mark.hatle@windriver.com>2011-03-10 17:52:20 -0600
committerSaul Wold <sgw@linux.intel.com>2011-03-10 21:43:05 -0800
commit5903a8fb4fbd7cf93ef2579f43065cdfb7e15d5a (patch)
treea81e73f26ee13677b711714641c1fb0b9157e614 /meta/recipes-devtools
parente865b4f106e95fceb5e4094740d872b24fcb7dd5 (diff)
downloadpoky-5903a8fb4fbd7cf93ef2579f43065cdfb7e15d5a.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')
-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