From cf779f5fbf2e54cd82db02ae7cbf36568abf3338 Mon Sep 17 00:00:00 2001 From: Anurag Thakur Date: Mon, 5 Jun 2023 20:31:07 +0530 Subject: [PATCH] [dense] Add -msse4.1 to compile with CMake * CMakeLists.txt: Add -msse4.1 to ${CMAKE_C_FLAGS} --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3a2c05d4e..802f2e56a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -247,6 +247,8 @@ if (BUILD_FRAMEWORK) endif () +set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -msse4.1") + # Find dependencies include(FindPkgConfig)