summaryrefslogtreecommitdiff
path: root/platform
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2016-01-10 21:26:34 -0300
committerJuan Linietsky <reduzio@gmail.com>2016-01-10 21:26:34 -0300
commitb21ce6cecbd75ae3281177c4890902586ca710f7 (patch)
treeb5037e726c088857dbe2013a961c27a726ce681c /platform
parenta120c66f98586138fc61fa6f243cb071d60111bc (diff)
make msvc 64bits build again, fixes #3098
disabled assembly for msvc 64 bits, as it is not supported
Diffstat (limited to 'platform')
-rw-r--r--platform/windows/detect.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/windows/detect.py b/platform/windows/detect.py
index a1366e7630..c00d94a4fb 100644
--- a/platform/windows/detect.py
+++ b/platform/windows/detect.py
@@ -262,7 +262,7 @@ def configure(env):
env.Append(CCFLAGS=["/I"+DIRECTX_PATH+"/Include"])
env.Append(LIBPATH=[DIRECTX_PATH+"/Lib/x86"])
env['ENV'] = os.environ;
- env["x86_opt_vc"]=True
+ env["x86_opt_vc"]=env["bits"]!="64"
else:
# Workaround for MinGW. See: