* update jemalloc to 1:5.3.0-5

This commit is contained in:
Alexander Baldeck 2025-01-01 20:28:38 +01:00
parent bc14a94762
commit d640b05aa4
3 changed files with 12 additions and 12 deletions

View File

@ -1,9 +1,9 @@
pkgbase = jemalloc
pkgdesc = General-purpose scalable concurrent malloc implementation
pkgver = 5.3.0
pkgrel = 4.1
pkgrel = 5
epoch = 1
url = http://www.canonware.com/jemalloc/
url = https://jemalloc.net/
arch = x86_64
arch = powerpc64le
arch = powerpc64
@ -11,6 +11,7 @@ pkgbase = jemalloc
arch = riscv64
license = BSD
makedepends = clang
depends = gcc-libs
depends = glibc
optdepends = perl: for jeprof
provides = libjemalloc.so

3
jemalloc/.nvchecker.toml Normal file
View File

@ -0,0 +1,3 @@
[jemalloc]
source = "git"
git = "https://github.com/jemalloc/jemalloc.git"

View File

@ -6,12 +6,12 @@
pkgname=jemalloc
epoch=1
pkgver=5.3.0
pkgrel=4.1
pkgrel=5
pkgdesc='General-purpose scalable concurrent malloc implementation'
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
license=('BSD')
url='http://www.canonware.com/jemalloc/'
depends=('glibc')
url='https://jemalloc.net/'
depends=('gcc-libs' 'glibc')
makedepends=('clang')
options=('!lto')
provides=('libjemalloc.so')
@ -22,13 +22,9 @@ sha256sums=('2db82d1e7119df3e71b7640219b6dfe84789bc0537983c3b7ac4f7189aecfeaa')
build() {
cd $pkgname-$pkgver
case "${CARCH}" in
x86_64)
# FS#71745: GCC-built jemalloc causes telegram-desktop to crash a lot. The reason is still not clear.
export CC=clang
export CXX=clang++
;;
esac
./configure \
--enable-prof \