From 306e8612be25a2a7634986d6a98ae69cc359359e Mon Sep 17 00:00:00 2001 From: Konstantinos Margaritis Date: Wed, 20 Dec 2023 15:27:56 +0000 Subject: [PATCH] GREATER_EQUAL --- cmake/archdetect.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/archdetect.cmake b/cmake/archdetect.cmake index 2d64e5cf..9dd5962a 100644 --- a/cmake/archdetect.cmake +++ b/cmake/archdetect.cmake @@ -70,7 +70,7 @@ else() if (SIMDE_BACKEND) if (CMAKE_COMPILER_IS_CLANG) if(ARCH_AARCH64) - if (CMAKE_C_COMPILER_VERSION VERSION_LESS "15.0") + if (CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL "15.0") set(GNUCC_ARCH native) set(TUNE_FLAG native) else()