mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-02-12 10:28:09 +00:00
18 lines
674 B
Makefile
18 lines
674 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="valgrind"
|
|
PKG_VERSION="3.22.0"
|
|
PKG_SHA256="c811db5add2c5f729944caf47c4e7a65dcaabb9461e472b578765dd7bf6d2d4c"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="https://valgrind.org/"
|
|
PKG_URL="https://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
|