diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2024-09-30 15:38:45 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2024-09-30 15:38:45 +0200 |
commit | 85d8a34f9ffefa715a174f215262584d7b91b459 (patch) | |
tree | f24e3a9f41b6a2fb78bcc0f003eadeb9d73d080d /libbuild2/cc/windows-manifest.cxx | |
parent | 9f7789ffdae2ea0aa5a3b389ca9745ff160fa60f (diff) |
Fix more issues in MSVC ARM64 support
Diffstat (limited to 'libbuild2/cc/windows-manifest.cxx')
-rw-r--r-- | libbuild2/cc/windows-manifest.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libbuild2/cc/windows-manifest.cxx b/libbuild2/cc/windows-manifest.cxx index 14f4a53..ff77327 100644 --- a/libbuild2/cc/windows-manifest.cxx +++ b/libbuild2/cc/windows-manifest.cxx @@ -23,8 +23,9 @@ namespace build2 const char* windows_manifest_arch (const string& tcpu) { - const char* pa (tcpu == "i386" || tcpu == "i686" ? "x86" : - tcpu == "x86_64" ? "amd64" : + const char* pa (tcpu == "x86_64" ? "amd64" : + tcpu == "i386" || tcpu == "i686" ? "x86" : + tcpu == "aarch64" ? "arm64" : nullptr); if (pa == nullptr) |