File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -138,7 +138,8 @@ enum P_ARCH
138138 arch_darwin_x64 = 41 ,
139139 arch_darwin_ppc64 = 42 ,
140140 arch_arm = 43 ,
141- arch_max = 44 // Keep this at the end
141+ arch_winnt_arm64 = 44 ,
142+ arch_max = 45 // Keep this at the end
142143};
143144
144145// Protocol Types
Original file line number Diff line number Diff line change @@ -64,13 +64,15 @@ constexpr P_ARCH ARCHITECTURE = arch_netbsd;
6464constexpr P_ARCH ARCHITECTURE = arch_darwin_ppc;
6565#elif defined(WIN_NT) && defined(AMD64)
6666constexpr P_ARCH ARCHITECTURE = arch_winnt_64;
67+ #elif defined(WIN_NT) && defined(ARM64)
68+ constexpr P_ARCH ARCHITECTURE = arch_winnt_arm64;
6769#elif defined(I386)
6870constexpr P_ARCH ARCHITECTURE = arch_intel_32;
6971#elif defined(DARWIN64)
7072constexpr P_ARCH ARCHITECTURE = arch_darwin_x64;
7173#elif defined(DARWINPPC64)
7274constexpr P_ARCH ARCHITECTURE = arch_darwin_ppc64;
73- #elif defined(ARM) || defined(ARM64)
75+ #elif defined(ARM)
7476constexpr P_ARCH ARCHITECTURE = arch_arm;
7577#endif
7678
You can’t perform that action at this time.
0 commit comments