mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
jemalloc nitpick: better semantics for stripPrefix
This commit is contained in:
parent
b3eaad9a27
commit
666870d813
1 changed files with 4 additions and 4 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue