[Web] Fix building for web on Windows

On Windows the command for emscripten are provided as `.bat` files,
which causes the compiler version check to fail without `shell=True`
This commit is contained in:
A Thousand Ships 2024-04-20 13:19:55 +02:00
parent 4a0160241f
commit 173692d05d
No known key found for this signature in database
GPG key ID: 2033189A662F8BD7

View file

@ -926,7 +926,11 @@ def get_compiler_version(env):
# Not using -dumpversion as some GCC distros only return major, and
# Clang used to return hardcoded 4.2.1: # https://reviews.llvm.org/D56803
try:
version = subprocess.check_output([env.subst(env["CXX"]), "--version"]).strip().decode("utf-8")
version = (
subprocess.check_output([env.subst(env["CXX"]), "--version"], shell=(os.name == "nt"))
.strip()
.decode("utf-8")
)
except (subprocess.CalledProcessError, OSError):
print("Couldn't parse CXX environment variable to infer compiler version.")
return ret