From af9f04223b48d5c84e5eb974baa56178ef5856d9 Mon Sep 17 00:00:00 2001 From: Mark Reid Date: Fri, 12 Jan 2024 19:41:24 -0800 Subject: [PATCH] Fix ssse3 detection typo Signed-off-by: Mark Reid --- share/cmake/utils/CheckSupportSSSE3.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/cmake/utils/CheckSupportSSSE3.cmake b/share/cmake/utils/CheckSupportSSSE3.cmake index 9efea27eea..ffa114a729 100644 --- a/share/cmake/utils/CheckSupportSSSE3.cmake +++ b/share/cmake/utils/CheckSupportSSSE3.cmake @@ -13,7 +13,7 @@ endif() # MSVC doesn't have flags if(USE_GCC OR USE_CLANG) - set(CMAKE_CXX_FLAGS "-w -msse3") + set(CMAKE_CXX_FLAGS "-w -mssse3") endif() if (APPLE AND __universal_build)