diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-10-20 09:58:26 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-10-20 09:58:26 -0700 |
commit | 1bef4bfa2ac030d1bce8e4a78e40de01e73f98e4 (patch) | |
tree | 35efdad76e0819c04b2428873729b994dbbcb548 /tools/shared.py | |
parent | 501b729cd4baea52a9f6f3b33401037541619793 (diff) |
refactor some tools stuff
Diffstat (limited to 'tools/shared.py')
-rw-r--r-- | tools/shared.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/shared.py b/tools/shared.py index 79dff5f1..076a9d17 100644 --- a/tools/shared.py +++ b/tools/shared.py @@ -21,6 +21,7 @@ LLVM_DIS=os.path.expanduser(os.path.join(LLVM_ROOT, 'llvm-dis')) LLVM_DIS_OPTS = ['-show-annotations'] # For LLVM 2.8+. For 2.7, you may need to do just [] LLVM_INTERPRETER=os.path.expanduser(os.path.join(LLVM_ROOT, 'lli')) LLVM_COMPILER=os.path.expanduser(os.path.join(LLVM_ROOT, 'llc')) +COFFEESCRIPT = path_from_root('tools', 'eliminator', 'node_modules', 'coffee-script', 'bin', 'coffee') EMSCRIPTEN = path_from_root('emscripten.py') DEMANGLER = path_from_root('third_party', 'demangler.py') @@ -30,6 +31,7 @@ AUTODEBUGGER = path_from_root('tools', 'autodebugger.py') DFE = path_from_root('tools', 'dead_function_eliminator.py') BINDINGS_GENERATOR = path_from_root('tools', 'bindings_generator.py') EXEC_LLVM = path_from_root('tools', 'exec_llvm.py') +VARIABLE_ELIMINATOR = path_from_root('tools', 'eliminator', 'eliminator.coffee') # Additional compiler options |