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

Check for unprefixed compilers when building on Windows.

This commit is contained in:
Pāvels Nadtočajevs
2025-12-09 22:26:27 +02:00
parent bb92a4c8e2
commit 61940e40ea

View File

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