Merge pull request #20612 from mdaiter/erlang19EnableDirtySchedulers

erlang19: enable dirty schedulers
This commit is contained in:
Daiderd Jordan 2016-11-21 20:34:30 +01:00 committed by GitHub
commit 171b8277e3
1 changed files with 2 additions and 0 deletions

View File

@ -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
@ -49,6 +50,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"