valgrind: update to 3.14.0.

This commit is contained in:
Johannes 2018-10-16 22:16:49 +02:00 committed by Johannes
parent f0f15e54fe
commit 5496444f7e
1 changed files with 9 additions and 6 deletions

View File

@ -1,19 +1,18 @@
# Template file for 'valgrind'
pkgname=valgrind
version=3.13.0
revision=2
only_for_archs="i686 x86_64 armv7l i686-musl x86_64-musl armv7l-musl"
version=3.14.0
revision=1
build_style=gnu-configure
configure_args="--enable-tls --without-mpicc"
configure_args="--enable-tls --without-mpicc --enable-lto=yes"
hostmakedepends="automake perl pkg-config"
makedepends="libgomp-devel"
depends="perl"
short_desc="Tool for finding memory management bugs in programs"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
homepage="http://valgrind.org/"
license="GPL-2"
license="GPL-2.0-or-later"
distfiles="https://sourceware.org/pub/${pkgname}/${pkgname}-${version}.tar.bz2"
checksum=d76680ef03f00cd5e970bbdcd4e57fb1f6df7d2e2c071635ef2be74790190c3b
checksum=037c11bfefd477cc6e9ebe8f193bb237fe397f7ce791b4a4ce3fa1c6a520baa5
CFLAGS="-fno-stack-protector"
CXXFLAGS="-fno-stack-protector"
@ -34,6 +33,10 @@ lib32symlinks="
valgrind/memcheck-x86-linux
valgrind/none-x86-linux"
case $XBPS_TARGET_MACHINE in
armv6*) broken="Unsupported architecture";;
esac
if [ "$XBPS_TARGET_MACHINE" = "armv7l" ]; then
configure_args+=" ac_cv_host=armv7l-unknown-linux-gnueabihf"
fi