forked from mirrors/nixpkgs
Merge pull request #68335 from lopsided98/jemalloc450-disable-thp
jemalloc450: disable transparent huge pages on ARM
This commit is contained in:
commit
4d6a6fe8af
|
@ -24,6 +24,13 @@ stdenv.mkDerivation rec {
|
||||||
configureFlags = []
|
configureFlags = []
|
||||||
++ optional stripPrefix "--with-jemalloc-prefix="
|
++ optional stripPrefix "--with-jemalloc-prefix="
|
||||||
++ optional disableInitExecTls "--disable-initial-exec-tls"
|
++ optional disableInitExecTls "--disable-initial-exec-tls"
|
||||||
|
# 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"
|
||||||
|
]
|
||||||
;
|
;
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
Loading…
Reference in a new issue