mirror of https://github.com/godotengine/godot
Merge pull request #83720 from Faless/web/fix_ecmascript_bigint
[Web] Fix closure compiler builds using BIGINT
This commit is contained in:
commit
7d695160c8
|
|
@ -162,7 +162,7 @@ def configure(env: "Environment"):
|
|||
env.AddMethod(create_template_zip, "CreateTemplateZip")
|
||||
|
||||
# Closure compiler extern and support for ecmascript specs (const, let, etc).
|
||||
env["ENV"]["EMCC_CLOSURE_ARGS"] = "--language_in ECMASCRIPT6"
|
||||
env["ENV"]["EMCC_CLOSURE_ARGS"] = "--language_in ECMASCRIPT_2020"
|
||||
|
||||
env["CC"] = "emcc"
|
||||
env["CXX"] = "em++"
|
||||
|
|
|
|||
Loading…
Reference in New Issue