aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/cc/windows-manifest.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'libbuild2/cc/windows-manifest.cxx')
-rw-r--r--libbuild2/cc/windows-manifest.cxx5
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)