1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-31 18:41:20 +00:00

Merge pull request #113814 from bruvzg/win_detect

Check for unprefixed compilers when building on Windows.
This commit is contained in:
Thaddeus Crews
2025-12-10 18:10:23 -06:00

View File

@@ -24,6 +24,8 @@ def try_cmd(test, prefix, arch, check_clang=False):
archs = ["x86_64", "x86_32", "arm64", "arm32"]
if arch:
archs = [arch]
if os.name == "nt":
archs += [""]
for a in archs:
try: