From a18825c2397801254823bd066ea556b55f688587 Mon Sep 17 00:00:00 2001 From: mpeterv Date: Sun, 3 Apr 2016 16:04:52 +0300 Subject: [PATCH] Pass x86_amd64 instead of amd64 to vcvarsall.bat --- hererocks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hererocks.py b/hererocks.py index c70669f..3601277 100755 --- a/hererocks.py +++ b/hererocks.py @@ -1030,7 +1030,7 @@ def get_vs_setup_cmd(vs_version, arch): vcvars_all_path = os.path.join(vs_directory, "vcvarsall.bat") if check_existence(vcvars_all_path): - return 'call "{}"{}'.format(vcvars_all_path, " amd64" if arch == "x64" else "") + return 'call "{}"{}'.format(vcvars_all_path, " x86_amd64" if arch == "x64" else "") vcvars_arch_path = os.path.join( vs_directory, "bin", "amd64\\vcvars64.bat" if arch == "x64" else "vcvars32.bat")