Merge pull request #20610 from mdaiter/erlang18EnableDirtySchedulers
erlang: added dirty scheduler support
This commit is contained in:
commit
dcb37919f7
|
@ -6,6 +6,7 @@
|
||||||
, javacSupport ? false, openjdk ? null
|
, javacSupport ? false, openjdk ? null
|
||||||
, enableHipe ? true
|
, enableHipe ? true
|
||||||
, enableDebugInfo ? false
|
, enableDebugInfo ? false
|
||||||
|
, enableDirtySchedulers ? false
|
||||||
}:
|
}:
|
||||||
|
|
||||||
assert wxSupport -> (if stdenv.isDarwin
|
assert wxSupport -> (if stdenv.isDarwin
|
||||||
|
@ -64,6 +65,7 @@ stdenv.mkDerivation rec {
|
||||||
configureFlags= [
|
configureFlags= [
|
||||||
"--with-ssl=${openssl.dev}"
|
"--with-ssl=${openssl.dev}"
|
||||||
] ++ optional enableHipe "--enable-hipe"
|
] ++ optional enableHipe "--enable-hipe"
|
||||||
|
++ optional enableDirtySchedulers "--enable-dirty-schedulers"
|
||||||
++ optional wxSupport "--enable-wx"
|
++ optional wxSupport "--enable-wx"
|
||||||
++ optional odbcSupport "--with-odbc=${unixODBC}"
|
++ optional odbcSupport "--with-odbc=${unixODBC}"
|
||||||
++ optional javacSupport "--with-javac"
|
++ optional javacSupport "--with-javac"
|
||||||
|
|
Loading…
Reference in New Issue