aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-03-11 18:35:49 -0700
committerAlon Zakai <alonzakai@gmail.com>2013-03-11 18:35:49 -0700
commit74fc756d57064a7bfa1e69ff6bfe2f1c687be3ae (patch)
treec588de304f38b31a772768078a86463511aced2b /tools
parent8d53fec332c633f57910a5679ce3ae68f5f35969 (diff)
add comments on ~/.emscripten file
Diffstat (limited to 'tools')
-rw-r--r--tools/settings_template_readonly.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/tools/settings_template_readonly.py b/tools/settings_template_readonly.py
index 970a8f8c..f689e205 100644
--- a/tools/settings_template_readonly.py
+++ b/tools/settings_template_readonly.py
@@ -5,17 +5,17 @@
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 }}}')
+NODE_JS = os.path.expanduser(os.getenv('NODE') or '{{{ NODE }}}') # executable
SPIDERMONKEY_ENGINE = [
- os.path.expanduser(os.getenv('SPIDERMONKEY') or 'js'), '-m', '-n']
-V8_ENGINE = os.path.expanduser(os.getenv('V8') or 'd8')
+ os.path.expanduser(os.getenv('SPIDERMONKEY') or 'js'), '-m', '-n'] # 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