Merge pull request #5119 from HiassofT/le10-valgrind

allow including valgrind in non-debug builds
This commit is contained in:
CvH 2021-02-13 20:24:52 +01:00 committed by GitHub
commit a5efce2820
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 1 additions and 13 deletions

View File

@ -21,7 +21,7 @@ if [ "${VAAPI_SUPPORT}" = "yes" ]; then
PKG_DEPENDS_TARGET+=" libva-utils"
fi
if build_with_debug && [ "${VALGRIND}" = "yes" ]; then
if [ "${VALGRIND}" = "yes" ]; then
PKG_DEPENDS_TARGET+=" valgrind"
fi

View File

@ -60,10 +60,6 @@
# build with installer (yes / no)
INSTALLER_SUPPORT="no"
# build debug with valgrind (yes / no)
# Increases image size significantly
VALGRIND="no"
# additional drivers to install:
# for a list of additional drivers see packages/linux-drivers
# Space separated list is supported,

View File

@ -101,10 +101,6 @@
# build with installer (yes / no)
INSTALLER_SUPPORT="no"
# build debug with valgrind (yes / no)
# Not available for armv6. Increases image size significantly
VALGRIND="no"
# kernel image name
KERNEL_NAME="kernel.img"

View File

@ -62,10 +62,6 @@
# build with installer (yes / no)
INSTALLER_SUPPORT="no"
# build debug with valgrind (yes / no)
# Increases image size significantly
VALGRIND="no"
# additional packages to install:
# Space separated list is supported,
# e.g. ADDITIONAL_PACKAGES="PACKAGE1 PACKAGE2"