diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-12-10 15:48:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-10 15:48:58 +0100 |
commit | 5b3e2dcaba2b9f378aef84cb80a4d155bf1a755a (patch) | |
tree | 107e1b8406fa216837e224ae8ef5a92076984e2e /platform/javascript/detect.py | |
parent | d26cbc41a650e73baf29533b2930d5a61770c1bb (diff) | |
parent | 8020515717042453f253f2bed9a7a3d59a980ee7 (diff) | |
download | redot-engine-5b3e2dcaba2b9f378aef84cb80a4d155bf1a755a.tar.gz |
Merge pull request #44266 from akien-mga/js-export-code-cleanup
HTML5: Code style cleanup for export code
Diffstat (limited to 'platform/javascript/detect.py')
-rw-r--r-- | platform/javascript/detect.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/platform/javascript/detect.py b/platform/javascript/detect.py index 178088e234..193a5ca4df 100644 --- a/platform/javascript/detect.py +++ b/platform/javascript/detect.py @@ -23,12 +23,12 @@ def get_opts(): return [ ("initial_memory", "Initial WASM memory (in MiB)", 16), - BoolVariable("use_assertions", "Use emscripten runtime assertions", False), + BoolVariable("use_assertions", "Use Emscripten runtime assertions", False), BoolVariable("use_thinlto", "Use ThinLTO", False), - BoolVariable("use_ubsan", "Use LLVM/GCC compiler undefined behavior sanitizer (UBSAN)", False), - BoolVariable("use_asan", "Use LLVM/GCC compiler address sanitizer (ASAN)", False), - BoolVariable("use_lsan", "Use LLVM/GCC compiler leak sanitizer (LSAN)", False), - BoolVariable("use_safe_heap", "Use emscripten SAFE_HEAP sanitizer", False), + BoolVariable("use_ubsan", "Use Emscripten undefined behavior sanitizer (UBSAN)", False), + BoolVariable("use_asan", "Use Emscripten address sanitizer (ASAN)", False), + BoolVariable("use_lsan", "Use Emscripten leak sanitizer (LSAN)", False), + BoolVariable("use_safe_heap", "Use Emscripten SAFE_HEAP sanitizer", False), # eval() can be a security concern, so it can be disabled. BoolVariable("javascript_eval", "Enable JavaScript eval interface", True), BoolVariable("threads_enabled", "Enable WebAssembly Threads support (limited browser support)", False), |