Skip to content

Commit edbadb1

Browse files
committed
Fix missing NOT
1 parent 835db11 commit edbadb1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ elseif(LINUX)
107107
check_cpu_supports(AVX2 "avx2")
108108
check_cpu_supports(AVX512 "avx512f")
109109
check_cpu_supports(SSE4 "sse4")
110-
elseif(APPLE NOT CMAKE_APPLE_SILICON_PROCESSOR)
110+
elseif(APPLE AND NOT CMAKE_APPLE_SILICON_PROCESSOR)
111111
check_cpu_supports(AVX2 "avx2_0")
112112
check_cpu_supports(AVX512 "avx512f")
113113
check_cpu_supports(SSE4 "sse4_1")

0 commit comments

Comments
 (0)