1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-11 13:10:58 +00:00

Merge pull request #100525 from adamscott/set-closure-language-to-default

Remove custom `--language-in` arg for the Closure compiler
This commit is contained in:
Thaddeus Crews
2025-03-11 14:00:35 -05:00
2 changed files with 4 additions and 3 deletions

View File

@@ -171,9 +171,6 @@ def configure(env: "SConsEnvironment"):
# Add method for creating the final zip file
env.AddMethod(create_template_zip, "CreateTemplateZip")
# Closure compiler extern and support for ecmascript specs (const, let, etc).
env["ENV"]["EMCC_CLOSURE_ARGS"] = "--language_in ECMASCRIPT_2021"
env["CC"] = "emcc"
env["CXX"] = "em++"