fix ARM arch detection (only arm64 supported right now)

This commit is contained in:
Matthias Hochsteger 2020-12-07 12:05:42 +01:00
parent 9eb8e4f473
commit 79a9453ce8

View File

@ -71,7 +71,7 @@
#define NETGEN_ARCH_AMD64
#endif
#if defined(__arm__) || defined(_M_ARM)
#if defined(__arm64__) || defined(_M_ARM64)
#define NETGEN_ARCH_ARM
#endif