This commit is contained in:
Thomas Nagy 2016-05-22 12:09:46 +02:00
parent e3d1da421f
commit c46ffd1a4a
No known key found for this signature in database
GPG Key ID: 67A565EDFDF90E64
1 changed files with 1 additions and 1 deletions

View File

@ -393,7 +393,7 @@ def gather_msvc_targets(conf, versions, version, vc_path):
for target,realtarget in all_msvc_platforms[::-1]:
targets.append((target, get_compiler_env(conf, 'msvc', realtarget, version, target, os.path.join(vc_path, 'vcvarsall.bat'))))
elif os.path.isfile(os.path.join(vc_path, 'Common7', 'Tools', 'vsvars32.bat')):
targets.append(('x86', get_compiler_env(conf, 'msvc', 'x86', version, 'x86', os.path.join(vc_path, 'Common7', 'Tools', 'vsvars32.bat')))))
targets.append(('x86', get_compiler_env(conf, 'msvc', 'x86', version, 'x86', os.path.join(vc_path, 'Common7', 'Tools', 'vsvars32.bat'))))
elif os.path.isfile(os.path.join(vc_path, 'Bin', 'vcvars32.bat')):
targets.append(('x86', get_compiler_env(conf, 'msvc', 'x86', version, '', os.path.join(vc_path, 'Bin', 'vcvars32.bat'))))
if targets: