From patchwork Tue Jan 3 06:19:46 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [CONSOLIDATED, PULL, 060/113] valgrind: add powerpc to the compatible host and add ${TCLIBC}-dbg in RRECOMMENDS Date: Tue, 03 Jan 2012 06:19:46 -0000 From: Saul Wold X-Patchwork-Id: 18101 Message-Id: <0097e38935482cc3704e8f4712f0d986dcea4661.1325571069.git.sgw@linux.intel.com> To: openembedded-core@lists.openembedded.org From: Zhenhua Luo 1. add powerpc into the compatible host list 2. valgrind requires the non-stripped libraries of ${TCLIBC}, so add ${TCLIBC}-dbg into RRECOMMENDS_valgrind Signed-off-by: Zhenhua Luo --- meta/recipes-devtools/valgrind/valgrind_3.7.0.bb | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/meta/recipes-devtools/valgrind/valgrind_3.7.0.bb b/meta/recipes-devtools/valgrind/valgrind_3.7.0.bb index 03cdd28..5f1757f 100644 --- a/meta/recipes-devtools/valgrind/valgrind_3.7.0.bb +++ b/meta/recipes-devtools/valgrind/valgrind_3.7.0.bb @@ -18,7 +18,7 @@ SRC_URI = "http://www.valgrind.org/downloads/valgrind-${PV}.tar.bz2 \ SRC_URI[md5sum] = "a855fda56edf05614f099dca316d1775" SRC_URI[sha256sum] = "5d62c0330f1481fe2c593249192fa68ff454c19c34343978cc9ce91aa324cbf6" -COMPATIBLE_HOST = '(i.86|x86_64).*-linux' +COMPATIBLE_HOST = '(i.86|x86_64|powerpc|ppc|powerpc64|ppc64).*-linux' inherit autotools @@ -27,3 +27,5 @@ EXTRA_OEMAKE = "-w" PARALLEL_MAKE = "" FILES_${PN}-dbg += "${libdir}/${PN}/*/.debug/*" + +RRECOMMENDS_${PN} += "${TCLIBC}-dbg"