diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-05-28 09:58:08 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-05-28 09:58:08 -0700 |
commit | a8db0c66afa1a348c2d26b290faaf7b3420d7dbc (patch) | |
tree | 71700e4ba034483367eedfd3240b079932e5bc06 /settings.py | |
parent | 712bc9041e3470920d0db6a05e5b0af85d1b78e2 (diff) |
require JAVA definition in ~/.emscripten
Diffstat (limited to 'settings.py')
-rw-r--r-- | settings.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/settings.py b/settings.py index d317d6b4..360c9216 100644 --- a/settings.py +++ b/settings.py @@ -1,15 +1,18 @@ # This file will be copied to ~/.emscripten if that file doesn't exist. Or, this is that copy. # IMPORTANT: Edit the *copy* with the right paths! +# Note: If you put paths relative to the home directory, do not forget os.path.expanduser EMSCRIPTEN_ROOT = os.path.expanduser('~/Dev/emscripten') # this helps projects using emscripten find it LLVM_ROOT = os.path.expanduser('~/Dev/llvm-3.0/cbuild/bin') # See below for notes on which JS engine(s) you need -NODE_JS = 'node' # Note: If you put a relative path here, do not forget os.path.expanduser +NODE_JS = 'node' SPIDERMONKEY_ENGINE = [os.path.expanduser('~/Dev/mozilla-central/js/src/js'), '-m', '-n'] V8_ENGINE = os.path.expanduser('~/Dev/v8/d8') +JAVA = 'java' + TEMP_DIR = '/tmp' # You will need to modify this on Windows |