From 79a9453ce8f02c66f46f43ca2699d13f217036af Mon Sep 17 00:00:00 2001 From: Matthias Hochsteger Date: Mon, 7 Dec 2020 12:05:42 +0100 Subject: [PATCH] fix ARM arch detection (only arm64 supported right now) --- libsrc/core/ngcore_api.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsrc/core/ngcore_api.hpp b/libsrc/core/ngcore_api.hpp index c74f9841..330e7e33 100644 --- a/libsrc/core/ngcore_api.hpp +++ b/libsrc/core/ngcore_api.hpp @@ -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