mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
update 3.16.1 (2020-06-22) to 3.17.0 (2021-03-19) news: https://www.valgrind.org/docs/manual/dist.news.html
18 lines
671 B
Makefile
18 lines
671 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="valgrind"
|
|
PKG_VERSION="3.17.0"
|
|
PKG_SHA256="ad3aec668e813e40f238995f60796d9590eee64a16dff88421430630e69285a2"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="http://valgrind.org/"
|
|
PKG_URL="ftp://sourceware.org/pub/valgrind/${PKG_NAME}-${PKG_VERSION}.tar.bz2"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_LONGDESC="A tool to help find memory-management problems in programs"
|
|
|
|
if [ "${TARGET_ARCH}" = "arm" ]; then
|
|
PKG_CONFIGURE_OPTS_TARGET="--enable-only32bit"
|
|
elif [ "${TARGET_ARCH}" = "aarch64" -o "${TARGET_ARCH}" = "x86_64" ]; then
|
|
PKG_CONFIGURE_OPTS_TARGET="--enable-only64bit"
|
|
fi
|