From 08a97da8b4539cc6c13f907efee3791cb97804b6 Mon Sep 17 00:00:00 2001 From: mpeterv Date: Sun, 3 Apr 2016 16:02:36 +0300 Subject: [PATCH] vs target: try VS versions in decreasing order --- hererocks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hererocks.py b/hererocks.py index ccb4c85..c70669f 100755 --- a/hererocks.py +++ b/hererocks.py @@ -1203,7 +1203,7 @@ def main(argv=None): print("Using cl.exe found in PATH.") else: 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: setup_vs_and_rerun(vs_version, arch)