aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/vcpkg_Build.cpp
diff options
context:
space:
mode:
authorRobert Schumacher <roschuma@microsoft.com>2017-05-08 19:20:11 -0700
committerRobert Schumacher <roschuma@microsoft.com>2017-05-08 19:20:11 -0700
commitfb060524823f23970bfc1c10f42482496f52a61a (patch)
tree418f8148e021b84505337131327246694244a062 /toolsrc/src/vcpkg_Build.cpp
parent5bcd47a68d0cbe67a80b9ef0d50c90ca38defdfc (diff)
downloadvcpkg-fb060524823f23970bfc1c10f42482496f52a61a.tar.gz
vcpkg-fb060524823f23970bfc1c10f42482496f52a61a.zip
[vcpkg] Use "amd64" for vcvarsall to be compatible with VS2015
Diffstat (limited to 'toolsrc/src/vcpkg_Build.cpp')
-rw-r--r--toolsrc/src/vcpkg_Build.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/toolsrc/src/vcpkg_Build.cpp b/toolsrc/src/vcpkg_Build.cpp
index ccc0ff95e..6605fa4fb 100644
--- a/toolsrc/src/vcpkg_Build.cpp
+++ b/toolsrc/src/vcpkg_Build.cpp
@@ -51,10 +51,10 @@ namespace vcpkg::Build
static constexpr ArchOption X86_ARM = {L"x86_arm", CPU::X86, CPU::ARM};
static constexpr ArchOption X86_ARM64 = {L"x86_arm64", CPU::X86, CPU::ARM64};
- static constexpr ArchOption X64 = {L"x64", CPU::X64, CPU::X64};
- static constexpr ArchOption X64_X86 = {L"x64_x86", CPU::X64, CPU::X86};
- static constexpr ArchOption X64_ARM = {L"x64_arm", CPU::X64, CPU::ARM};
- static constexpr ArchOption X64_ARM64 = {L"x64_arm64", CPU::X64, CPU::ARM64};
+ static constexpr ArchOption X64 = {L"amd64", CPU::X64, CPU::X64};
+ static constexpr ArchOption X64_X86 = {L"amd64_x86", CPU::X64, CPU::X86};
+ static constexpr ArchOption X64_ARM = {L"amd64_arm", CPU::X64, CPU::ARM};
+ static constexpr ArchOption X64_ARM64 = {L"amd64_arm64", CPU::X64, CPU::ARM64};
static constexpr std::array<ArchOption, 8> VALUES = {
X86, X86_X64, X86_ARM, X86_ARM64, X64, X64_X86, X64_ARM, X64_ARM64};