# This file will be edited (the {{{ }}} things), and written to `.emscripten`1# when emscripten is first used and no config file is found.23# Note: If you put paths relative to the home directory, do not forget4# os.path.expanduser5#6# Any config setting <KEY> in this file can be overridden by setting the7# EM_<KEY> environment variable. For example, settings EM_LLVM_ROOT override8# the setting in this file.9#10# Note: On Windows, remember to escape backslashes! I.e. LLVM='c:\llvm\'11# is not valid, but LLVM='c:\\llvm\\' and LLVM='c:/llvm/'12# are.1314LLVM_ROOT = '{{{ LLVM_ROOT }}}' # directory15BINARYEN_ROOT = '{{{ BINARYEN_ROOT }}}' # directory1617# Location of the node binary to use for running the JS parts of the compiler.18# This engine must exist, or nothing can be compiled.19NODE_JS = '{{{ NODE }}}' # executable2021################################################################################22#23# Test suite options:24#25# Alternative JS engines to use during testing:26#27# NODE_JS_TEST = 'node' # executable28# SPIDERMONKEY_ENGINE = ['js'] # executable29# V8_ENGINE = 'd8' # executable30#31# All JS engines to use when running the automatic tests. Not all the engines in32# this list must exist (if they don't, they will be skipped in the test runner).33#34# JS_ENGINES = [NODE_JS_TEST] # add V8_ENGINE or SPIDERMONKEY_ENGINE if you have them installed too.35#36# import os37# WASMER = os.path.expanduser(os.path.join('~', '.wasmer', 'bin', 'wasmer'))38# WASMTIME = os.path.expanduser(os.path.join('~', 'wasmtime'))39#40# Wasm engines to use in STANDALONE_WASM tests.41#42# WASM_ENGINES = [] # add WASMER or WASMTIME if you have them installed43#44################################################################################45#46# Other options47#48# FROZEN_CACHE = True # never clears the cache, and disallows building to the cache495051