|
12 | 12 | # is not valid, but LLVM='c:\\llvm\\' and LLVM='c:/llvm/' |
13 | 13 | # are. |
14 | 14 |
|
15 | | -import os |
16 | | - |
17 | 15 | # This is used by external projects in order to find emscripten. It is not used |
18 | 16 | # by emscripten itself. |
19 | | -EMSCRIPTEN_ROOT = os.path.expanduser(os.getenv('EMSCRIPTEN', '{{{ EMSCRIPTEN_ROOT }}}')) # directory |
| 17 | +EMSCRIPTEN_ROOT = '{{{ EMSCRIPTEN_ROOT }}}' # directory |
20 | 18 |
|
21 | | -LLVM_ROOT = os.path.expanduser(os.getenv('LLVM', '{{{ LLVM_ROOT }}}')) # directory |
22 | | -BINARYEN_ROOT = os.path.expanduser(os.getenv('BINARYEN', '')) # directory |
| 19 | +LLVM_ROOT = '{{{ LLVM_ROOT }}}' # directory |
| 20 | +BINARYEN_ROOT = '' # directory |
23 | 21 |
|
24 | 22 | # Location of the node binary to use for running the JS parts of the compiler. |
25 | 23 | # This engine must exist, or nothing can be compiled. |
26 | | -NODE_JS = os.path.expanduser(os.getenv('NODE', '{{{ NODE }}}')) # executable |
| 24 | +NODE_JS = '{{{ NODE }}}' # executable |
27 | 25 |
|
28 | 26 | JAVA = 'java' # executable |
29 | 27 |
|
|
33 | 31 | # |
34 | 32 | # Alternative JS engines to use during testing: |
35 | 33 | # |
36 | | -# SPIDERMONKEY_ENGINE = [os.path.expanduser(os.getenv('SPIDERMONKEY', 'js'))] # executable |
37 | | -# V8_ENGINE = os.path.expanduser(os.getenv('V8', 'd8')) # executable |
| 34 | +# SPIDERMONKEY_ENGINE = ['js'] # executable |
| 35 | +# V8_ENGINE = 'd8' # executable |
38 | 36 | # |
39 | 37 | # All JS engines to use when running the automatic tests. Not all the engines in |
40 | 38 | # this list must exist (if they don't, they will be skipped in the test runner). |
41 | 39 | # |
42 | 40 | # JS_ENGINES = [NODE_JS] # add V8_ENGINE or SPIDERMONKEY_ENGINE if you have them installed too. |
43 | 41 | # |
| 42 | +# import os |
44 | 43 | # WASMER = os.path.expanduser(os.path.join('~', '.wasmer', 'bin', 'wasmer')) |
45 | 44 | # WASMTIME = os.path.expanduser(os.path.join('~', 'wasmtime')) |
46 | 45 | # |
47 | 46 | # Wasm engines to use in STANDALONE_WASM tests. |
48 | 47 | # |
49 | 48 | # WASM_ENGINES = [] # add WASMER or WASMTIME if you have them installed |
50 | 49 | # |
| 50 | +################################################################################ |
| 51 | +# |
51 | 52 | # Other options |
52 | 53 | # |
53 | 54 | # FROZEN_CACHE = True # never clears the cache, and disallows building to the cache |
0 commit comments