1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

MinGW: Print compiler warnings on Windows

This commit is contained in:
Alvin Wong
2024-07-26 02:17:07 +08:00
parent 2d300a0bdc
commit c7a7a5a973

View File

@@ -495,6 +495,8 @@ def use_windows_spawn_fix(self, platform=None):
rv = proc.wait()
if rv:
print_error(err)
elif len(err) > 0 and not err.isspace():
print(err)
return rv
def mySpawn(sh, escape, cmd, args, env):