2018-11-08 14:58:56 +03:00
|
|
|
{ version, sha256 }:
|
2021-01-21 20:00:13 +03:00
|
|
|
{ lib, stdenv, fetchurl
|
2018-11-08 14:58:56 +03:00
|
|
|
# By default, jemalloc puts a je_ prefix onto all its symbols on OSX, which
|
|
|
|
# then stops downstream builds (mariadb in particular) from detecting it. This
|
|
|
|
# option should remove the prefix and give us a working jemalloc.
|
|
|
|
# Causes segfaults with some software (ex. rustc), but defaults to true for backward
|
2019-01-23 23:01:59 +03:00
|
|
|
# compatibility.
|
|
|
|
, stripPrefix ? stdenv.hostPlatform.isDarwin
|
2018-12-02 12:18:22 +03:00
|
|
|
, disableInitExecTls ? false
|
|
|
|
}:
|
|
|
|
|
2021-01-21 20:00:13 +03:00
|
|
|
with lib;
|
2018-04-16 13:27:04 +03:00
|
|
|
|
2018-11-08 14:58:56 +03:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 15:41:18 +03:00
|
|
|
pname = "jemalloc";
|
2018-04-16 13:27:04 +03:00
|
|
|
inherit version;
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 15:41:18 +03:00
|
|
|
url = "https://github.com/jemalloc/jemalloc/releases/download/${version}/${pname}-${version}.tar.bz2";
|
2018-04-16 13:27:04 +03:00
|
|
|
inherit sha256;
|
|
|
|
};
|
|
|
|
|
2018-11-08 14:58:56 +03:00
|
|
|
# see the comment on stripPrefix
|
2018-12-02 12:18:22 +03:00
|
|
|
configureFlags = []
|
2019-01-23 23:01:59 +03:00
|
|
|
++ optional stripPrefix "--with-jemalloc-prefix="
|
|
|
|
++ optional disableInitExecTls "--disable-initial-exec-tls"
|
2019-09-09 05:53:23 +03:00
|
|
|
# jemalloc is unable to correctly detect transparent hugepage support on
|
|
|
|
# ARM (https://github.com/jemalloc/jemalloc/issues/526), and the default
|
|
|
|
# kernel ARMv6/7 kernel does not enable it, so we explicitly disable support
|
|
|
|
++ optionals (stdenv.isAarch32 && versionOlder version "5") [
|
|
|
|
"--disable-thp"
|
|
|
|
"je_cv_thp=no"
|
|
|
|
]
|
2018-12-02 12:18:22 +03:00
|
|
|
;
|
|
|
|
|
2018-04-16 13:27:04 +03:00
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-21 20:00:13 +03:00
|
|
|
meta = with lib; {
|
2020-04-01 04:11:51 +03:00
|
|
|
homepage = "http://jemalloc.net";
|
2018-04-16 13:27:04 +03:00
|
|
|
description = "General purpose malloc(3) implementation";
|
|
|
|
longDescription = ''
|
|
|
|
malloc(3)-compatible memory allocator that emphasizes fragmentation
|
|
|
|
avoidance and scalable concurrency support.
|
|
|
|
'';
|
|
|
|
license = licenses.bsd2;
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
2018-11-08 14:58:56 +03:00
|
|
|
}
|