File tree Expand file tree Collapse file tree 1 file changed +11
-8
lines changed
Expand file tree Collapse file tree 1 file changed +11
-8
lines changed Original file line number Diff line number Diff line change 2020# See parse_config_file below.
2121EMSCRIPTEN_ROOT = __rootpath__
2222NODE_JS = None
23- NODE_JS_TEST = None
2423BINARYEN_ROOT = None
25- SPIDERMONKEY_ENGINE = None
26- V8_ENGINE : Optional [List [str ]] = None
27- LLVM_ROOT = None
2824LLVM_ADD_VERSION = None
2925CLANG_ADD_VERSION = None
3026CLOSURE_COMPILER = None
31- JS_ENGINES : List [List [str ]] = []
32- WASMER = None
33- WASMTIME = None
34- WASM_ENGINES : List [List [str ]] = []
3527FROZEN_CACHE = None
3628CACHE = None
3729PORTS = None
4032# Set by init()
4133EM_CONFIG = None
4234
35+ # Settings that are only used for testing. emcc itself does not use
36+ # any of these.
37+ NODE_JS_TEST = None
38+ SPIDERMONKEY_ENGINE = None
39+ V8_ENGINE : Optional [List [str ]] = None
40+ LLVM_ROOT = None
41+ JS_ENGINES : List [List [str ]] = []
42+ WASMER = None
43+ WASMTIME = None
44+ WASM_ENGINES : List [List [str ]] = []
45+
4346
4447def listify (x ):
4548 if x is None or type (x ) is list :
You can’t perform that action at this time.
0 commit comments