diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-03-15 18:21:34 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-03-15 18:21:34 -0700 |
commit | b22f6fbbbebb5df55ceb8fdc9f7c4d111c902c5e (patch) | |
tree | c568136b2cf95d897d128b362720602a3b401244 /tools/settings_template_readonly.py | |
parent | 8c9a37a40a164dba330390af2eabf5ad05625001 (diff) | |
parent | 27d1a249622d33ab8aff2814d13569507336873b (diff) |
Merge branch 'incoming'
Diffstat (limited to 'tools/settings_template_readonly.py')
-rw-r--r-- | tools/settings_template_readonly.py | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/tools/settings_template_readonly.py b/tools/settings_template_readonly.py index 970a8f8c..7ab89b48 100644 --- a/tools/settings_template_readonly.py +++ b/tools/settings_template_readonly.py @@ -5,17 +5,16 @@ import os # this helps projects using emscripten find it -EMSCRIPTEN_ROOT = os.path.expanduser(os.getenv('EMSCRIPTEN') or '{{{ EMSCRIPTEN_ROOT }}}') -LLVM_ROOT = os.path.expanduser(os.getenv('LLVM') or '{{{ LLVM_ROOT }}}') -PYTHON = os.path.expanduser(os.getenv('PYTHON') or '{{{ PYTHON }}}') +EMSCRIPTEN_ROOT = os.path.expanduser(os.getenv('EMSCRIPTEN') or '{{{ EMSCRIPTEN_ROOT }}}') # directory +LLVM_ROOT = os.path.expanduser(os.getenv('LLVM') or '{{{ LLVM_ROOT }}}') # directory +PYTHON = os.path.expanduser(os.getenv('PYTHON') or '{{{ PYTHON }}}') # executable # See below for notes on which JS engine(s) you need -NODE_JS = os.path.expanduser(os.getenv('NODE') or '{{{ NODE }}}') -SPIDERMONKEY_ENGINE = [ - os.path.expanduser(os.getenv('SPIDERMONKEY') or 'js'), '-m', '-n'] -V8_ENGINE = os.path.expanduser(os.getenv('V8') or 'd8') +NODE_JS = os.path.expanduser(os.getenv('NODE') or '{{{ NODE }}}') # executable +SPIDERMONKEY_ENGINE = [os.path.expanduser(os.getenv('SPIDERMONKEY') or 'js')] # executable +V8_ENGINE = os.path.expanduser(os.getenv('V8') or 'd8') # executable -JAVA = 'java' +JAVA = 'java' # executable TEMP_DIR = '/tmp' # You will need to modify this on Windows |