make msvc 64bits build again, fixes #3098

disabled assembly for msvc 64 bits, as it is not supported
This commit is contained in:
Juan Linietsky 2016-01-10 21:26:34 -03:00
parent a120c66f98
commit b21ce6cecb

View File

@ -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: