From 0ea35f92aa3bf4238f5bd0741e0155676d6ca520 Mon Sep 17 00:00:00 2001 From: Ussama Naal Date: Tue, 4 Mar 2025 15:04:56 -0800 Subject: [PATCH] Include the official aarch64 in the arm on/off switch --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fc2bc96..e191ae5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ option(GEOGRAM_WITH_HLBFGS "Non-linear solver (Yang Liu's HLBFGS)" O # option(NPE_WITH_EIGEN "Whether to use the bundled version of Eigen" ON) option(EIGEN_WITH_MKL "Whether to build Eigen with intel MKL or not" OFF) -if(${CMAKE_SYSTEM_PROCESSOR} MATCHES "(arm64)|(ARM64)") +if(${CMAKE_SYSTEM_PROCESSOR} MATCHES "(arm64)|(ARM64)|(aarch64)|(AARCH64)") set(NOT_USING_ARM OFF) else() set(NOT_USING_ARM ON)