mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
erlang17: enable dirty schedulers
This commit is contained in:
parent
baa73cd6e0
commit
fd0f247658
1 changed files with 2 additions and 0 deletions
|
@ -6,6 +6,7 @@
|
|||
, javacSupport ? false, openjdk ? null
|
||||
, enableHipe ? true
|
||||
, enableDebugInfo ? false
|
||||
, enableDirtySchedulers ? false
|
||||
}:
|
||||
|
||||
assert wxSupport -> (if stdenv.isDarwin
|
||||
|
@ -46,6 +47,7 @@ stdenv.mkDerivation rec {
|
|||
configureFlags= [
|
||||
"--with-ssl=${openssl.dev}"
|
||||
] ++ optional enableHipe "--enable-hipe"
|
||||
++ optional enableDirtySchedulers "--enable-dirty-schedulers"
|
||||
++ optional wxSupport "--enable-wx"
|
||||
++ optional odbcSupport "--with-odbc=${unixODBC}"
|
||||
++ optional javacSupport "--with-javac"
|
||||
|
|
Loading…
Reference in a new issue