Browse Source

erl VM flags

Added "+sbwt very_long +swt very_low"
Mike "mox" Oxford 12 years ago
parent
commit
c9e68787e8
1 changed files with 1 additions and 2 deletions
  1. 1 2
      elli/setup_erlang.py

+ 1 - 2
elli/setup_erlang.py

@@ -1,4 +1,3 @@
-
 import subprocess
 import sys
 import setup_util
@@ -9,7 +8,7 @@ def start(args):
   try:
     subprocess.check_call("./rebar get-deps", shell=True, cwd="elli")
     subprocess.check_call("./rebar compile", shell=True, cwd="elli")
-    subprocess.check_call("erl -pa ebin deps/*/ebin -s elli_bench -noshell -detached", shell=True, cwd="elli")
+    subprocess.check_call("erl -pa ebin deps/*/ebin +K true +sbwt very_long +swt very_low -s elli_bench -noshell -detached", shell=True, cwd="elli")
     return 0
   except subprocess.CalledProcessError:
     return 1