mirror of
https://git.yoctoproject.org/poky
synced 2026-07-27 07:27:12 +00:00
valgrind: upgrade to 3.9.0
Changed patches directory to "valgrind"; Removed 4 patches because they were merged upstream; Updated 2 patches because now it has configure.ac instead of .in; Changed license md5 for 2 files because of a small change for copyright year (From OE-Core rev: 57794c201aa732392a135e03e04faf18929f645f) Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
63fb3587fc
commit
2ccdb82a35
@@ -0,0 +1,42 @@
|
||||
DESCRIPTION = "Valgrind memory debugger"
|
||||
HOMEPAGE = "http://valgrind.org/"
|
||||
BUGTRACKER = "http://valgrind.org/support/bug_reports.html"
|
||||
LICENSE = "GPLv2 & GPLv2+ & BSD"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=c46082167a314d785d012a244748d803 \
|
||||
file://include/pub_tool_basics.h;beginline=1;endline=29;md5=e7071929a50d4b0fc27a3014b315b0f7 \
|
||||
file://include/valgrind.h;beginline=1;endline=56;md5=92df8a1bde56fe2af70931ff55f6622f \
|
||||
file://COPYING.DOCS;md5=8fdeb5abdb235a08e76835f8f3260215"
|
||||
|
||||
X11DEPENDS = "virtual/libx11"
|
||||
DEPENDS = "${@base_contains('DISTRO_FEATURES', 'x11', '${X11DEPENDS}', '', d)}"
|
||||
PR = "r8"
|
||||
|
||||
SRC_URI = "http://www.valgrind.org/downloads/valgrind-${PV}.tar.bz2 \
|
||||
file://fixed-perl-path.patch \
|
||||
file://Added-support-for-PPC-instructions-mfatbu-mfatbl.patch \
|
||||
file://sepbuildfix.patch \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "0947de8112f946b9ce64764af7be6df2"
|
||||
SRC_URI[sha256sum] = "e6af71a06bc2534541b07743e1d58dc3caf744f38205ca3e5b5a0bdf372ed6f0"
|
||||
|
||||
COMPATIBLE_HOST = '(i.86|x86_64|powerpc|powerpc64).*-linux'
|
||||
COMPATIBLE_HOST_armv7a = 'arm.*-linux'
|
||||
|
||||
inherit autotools
|
||||
|
||||
EXTRA_OECONF = "--enable-tls --without-mpicc"
|
||||
EXTRA_OECONF_armv7a = "--enable-tls -host=armv7-none-linux-gnueabi --without-mpicc"
|
||||
EXTRA_OEMAKE = "-w"
|
||||
PARALLEL_MAKE = ""
|
||||
|
||||
do_install_append () {
|
||||
install -m 644 ${B}/default.supp ${D}/${libdir}/valgrind/
|
||||
}
|
||||
|
||||
RDEPENDS_${PN} += "perl"
|
||||
|
||||
FILES_${PN}-dbg += "${libdir}/${PN}/*/.debug/*"
|
||||
RRECOMMENDS_${PN}_powerpc += "${TCLIBC}-dbg"
|
||||
RRECOMMENDS_${PN}_powerpc64 += "${TCLIBC}-dbg"
|
||||
RRECOMMENDS_${PN}_armv7a += "${TCLIBC}-dbg"
|
||||
Reference in New Issue
Block a user