Files
Arch-R/packages/debug/strace/package.mk
Ian Leonard 88dfb290b5 strace: dont build 32bit support for aarch64
32-bit binaries shouldn't be present in said build. Presently, it
errors with:

checking for m32 personality compile support (using   -I.  )... no
checking whether to enable m32 personality support... no
configure: error: Cannot enable m32 personality support

Signed-off-by: Ian Leonard <antonlacon@gmail.com>
2021-01-30 03:20:01 +00:00

17 lines
609 B
Makefile

# SPDX-License-Identifier: GPL-2.0
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="strace"
PKG_VERSION="5.10"
PKG_SHA256="fe3982ea4cd9aeb3b4ba35f6279f0b577a37175d3282be24b9a5537b56b8f01c"
PKG_LICENSE="BSD"
PKG_SITE="https://strace.io/"
PKG_URL="https://strace.io/files/${PKG_VERSION}/strace-${PKG_VERSION}.tar.xz"
PKG_DEPENDS_TARGET="toolchain"
PKG_LONGDESC="strace is a diagnostic, debugging and instructional userspace utility"
PKG_TOOLCHAIN="autotools"
if [ "${TARGET_ARCH}" = x86_64 -o "${TARGET_ARCH}" = "aarch64" ]; then
PKG_CONFIGURE_OPTS_TARGET="--enable-mpers=no"
fi