vs target: try VS versions in decreasing order

This commit is contained in:
mpeterv 2016-04-03 16:02:36 +03:00
parent 82097c458c
commit 08a97da8b4

View File

@ -1203,7 +1203,7 @@ def main(argv=None):
print("Using cl.exe found in PATH.") print("Using cl.exe found in PATH.")
else: else:
arch = "x64" if platform.machine().endswith("64") else "x86" arch = "x64" if platform.machine().endswith("64") else "x86"
vs_versions = ["11.0", "12.0", "14.0"] if arch == "x64" else ["9.0", "10.0", "11.0", "12.0", "14.0"] vs_versions = ["14.0", "12.0", "11.0"] if arch == "x64" else ["14.0", "12.0", "11.0", "10.0", "9.0"]
for vs_version in vs_versions: for vs_version in vs_versions:
setup_vs_and_rerun(vs_version, arch) setup_vs_and_rerun(vs_version, arch)