Merge pull request #7493 from neikeq/pr-mingw-bits
Detect bits when building with MinGW
This commit is contained in:
commit
6eeb994a7b
@ -319,7 +319,7 @@ def configure(env):
|
||||
mingw_prefix = ""
|
||||
|
||||
if (env["bits"] == "default"):
|
||||
env["bits"] = "32"
|
||||
env["bits"] = "64" if "PROGRAMFILES(X86)" in os.environ else "32"
|
||||
|
||||
if (env["bits"] == "32"):
|
||||
env.Append(LINKFLAGS=['-static'])
|
||||
|
Loading…
Reference in New Issue
Block a user