From 2fef238f35b0a9bba41706d7bab7811fbbf24e62 Mon Sep 17 00:00:00 2001 From: Chad Wagner <47257594+wagnerch@users.noreply.github.com> Date: Sat, 5 Jun 2021 18:46:55 +0000 Subject: [PATCH] Revert "gperftools: fix for release files" Revert "gperftools: add package providing tcmalloc_minimal" Revert "Add TCMALLOC_SUPPORT parameter to add libtcmalloc_minimal to the image" This reverts commits: 85e3d8d4e052a37391c2f2d9748be4b4140e2c42 780c7a3db02599afe1f8eda138be17623e9b5a38 d6d915d0cc58e82f85c1c66354962dd648e3b6a8 --- config/options | 2 -- packages/devel/gperftools/package.mk | 13 ------------- packages/virtual/libc/package.mk | 4 ---- 3 files changed, 19 deletions(-) delete mode 100644 packages/devel/gperftools/package.mk diff --git a/config/options b/config/options index b19bf5e0c3..974860b1f5 100644 --- a/config/options +++ b/config/options @@ -33,10 +33,8 @@ TARGET_ARCH="${ARCH}" # include arm-mem package on arm if [ "${TARGET_ARCH}" = "arm" ]; then ARM_MEM_SUPPORT="yes" - TCMALLOC_SUPPORT="yes" else ARM_MEM_SUPPORT="no" - TCMALLOC_SUPPORT="no" fi # include helper functions diff --git a/packages/devel/gperftools/package.mk b/packages/devel/gperftools/package.mk deleted file mode 100644 index 1b43f11c53..0000000000 --- a/packages/devel/gperftools/package.mk +++ /dev/null @@ -1,13 +0,0 @@ -# SPDX-License-Identifier: GPL-2.0 -# Copyright (C) 2021-present Team LibreELEC (https://libreelec.tv) - -PKG_NAME="gperftools" -PKG_VERSION="2.9.1" -PKG_SHA256="ea566e528605befb830671e359118c2da718f721c27225cbbc93858c7520fee3" -PKG_LICENSE="BSD" -PKG_SITE="https://github.com/gperftools/gperftools" -PKG_URL="https://github.com/gperftools/gperftools/releases/download/gperftools-${PKG_VERSION}/gperftools-${PKG_VERSION}.tar.gz" -PKG_DEPENDS_TARGET="toolchain" -PKG_LONGDESC="Google Performance Tools" - -PKG_CONFIGURE_OPTS_TARGET="--enable-minimal --disable-debugalloc --disable-static" diff --git a/packages/virtual/libc/package.mk b/packages/virtual/libc/package.mk index f4ad489239..8aae341393 100644 --- a/packages/virtual/libc/package.mk +++ b/packages/virtual/libc/package.mk @@ -16,7 +16,3 @@ if [ "${ARM_MEM_SUPPORT}" = "yes" ]; then PKG_DEPENDS_TARGET+=" arm-mem" PKG_DEPENDS_INIT+=" arm-mem:init" fi - -if [ "${TCMALLOC_SUPPORT}" = "yes" ]; then - PKG_DEPENDS_TARGET+=" gperftools" -fi