Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include the official aarch64 in the arm on/off switch #104

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down