File tree 1 file changed +11
-8
lines changed 1 file changed +11
-8
lines changed Original file line number Diff line number Diff line change 20
20
# See parse_config_file below.
21
21
EMSCRIPTEN_ROOT = __rootpath__
22
22
NODE_JS = None
23
- NODE_JS_TEST = None
24
23
BINARYEN_ROOT = None
25
- SPIDERMONKEY_ENGINE = None
26
- V8_ENGINE : Optional [List [str ]] = None
27
- LLVM_ROOT = None
28
24
LLVM_ADD_VERSION = None
29
25
CLANG_ADD_VERSION = None
30
26
CLOSURE_COMPILER = None
31
- JS_ENGINES : List [List [str ]] = []
32
- WASMER = None
33
- WASMTIME = None
34
- WASM_ENGINES : List [List [str ]] = []
35
27
FROZEN_CACHE = None
36
28
CACHE = None
37
29
PORTS = None
40
32
# Set by init()
41
33
EM_CONFIG = None
42
34
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
+
43
46
44
47
def listify (x ):
45
48
if x is None or type (x ) is list :
You can’t perform that action at this time.
0 commit comments