Fix #1059: Linking for mingw/x86_64 on MSYS2 fails, w/ ar execution speed up

Feiyun Wang 2023-04-01 00:46:28 +08:00
parent 8d3dc7551d
commit 88e135d53b
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ def configure(env):
# print("objs=", len(args) - begin, ", length=", len(cmdline))
rv = mySubProcess(cmdline, env)
else:
rv = mySubProcess(args, env)
rv = mySubProcess(" ".join(args), env)
return rv
env["SPAWN"] = mySpawn