diff options
author | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2017-01-10 17:08:31 +0100 |
---|---|---|
committer | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2017-01-10 17:08:31 +0100 |
commit | 460f030b738eb055d915e246a61f7740fe14f57b (patch) | |
tree | 81bc3c7fdb24c641670215a1aeccc1168c5f5fa7 /platform/windows/detect.py | |
parent | 4235abe8dc9918d479229e6703d18e2b801011c3 (diff) | |
download | redot-engine-460f030b738eb055d915e246a61f7740fe14f57b.tar.gz |
Detect bits when building with MinGW
Diffstat (limited to 'platform/windows/detect.py')
-rw-r--r-- | platform/windows/detect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/windows/detect.py b/platform/windows/detect.py index df5bc49aa4..3c742f535a 100644 --- a/platform/windows/detect.py +++ b/platform/windows/detect.py @@ -315,7 +315,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']) |