jemalloc nitpick: better semantics for stripPrefix

This commit is contained in:
Vladimír Čunát 2019-01-23 21:01:59 +01:00
parent b3eaad9a27
commit 666870d813
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -4,8 +4,8 @@
# 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
# compatibility. Ignored on non OSX.
, stripPrefix ? true
# compatibility.
, stripPrefix ? stdenv.hostPlatform.isDarwin
, disableInitExecTls ? false
}:
@ -22,8 +22,8 @@ stdenv.mkDerivation rec {
# see the comment on stripPrefix
configureFlags = []
++ optional (stdenv.isDarwin && stripPrefix) [ "--with-jemalloc-prefix=" ]
++ optional disableInitExecTls [ "--disable-initial-exec-tls" ]
++ optional stripPrefix "--with-jemalloc-prefix="
++ optional disableInitExecTls "--disable-initial-exec-tls"
;
doCheck = true;