Revert "gperftools: fix for release files"

Revert "kodi: preload libtcmalloc_minimal.so if present"
Revert "virtual/libc: buid tcmalloc_minimal for ARM"
Revert "gperftools: add package providing tcmalloc_minimal"

This reverts commits:
68ee7158df39af3bbf5969ef19702bdf88f5088d
817f2bfa69571a21ba7acde35e679c498c8063ac
0bd162f15d1e4884ffe4ee1b813c45fc7888ec05
9ca7acaa1ab765335f1423f38f2e3d5678e282ef
This commit is contained in:
Chad Wagner 2021-06-05 20:03:23 +00:00
parent b3a1583e67
commit fae592ce2a
No known key found for this signature in database
GPG Key ID: DF8D3D475337FA8E
3 changed files with 1 additions and 18 deletions

View File

@ -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"

View File

@ -43,10 +43,6 @@ else #arm
echo "MALLOC_MMAP_THRESHOLD_=8192" >> /run/libreelec/kodi.conf
fi
if [ -f /usr/lib/libtcmalloc_minimal.so ] ; then
echo "LD_PRELOAD=/usr/lib/libtcmalloc_minimal.so" >> /run/libreelec/kodi.conf
fi
if [ -f /storage/.config/kodi.conf ] ; then
cat /storage/.config/kodi.conf >>/run/libreelec/kodi.conf
fi

View File

@ -13,6 +13,6 @@ PKG_SECTION="virtual"
PKG_LONGDESC="Meta package for installing various tools and libs needed for libc"
if [ "${TARGET_ARCH}" = "arm" ]; then
PKG_DEPENDS_TARGET="$PKG_DEPENDS_TARGET arm-mem gperftools"
PKG_DEPENDS_TARGET="$PKG_DEPENDS_TARGET arm-mem"
PKG_DEPENDS_INIT="$PKG_DEPENDS_INIT arm-mem:init"
fi