From d201e65810a56be793ea69921cedee92226c2267 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sat, 3 Jun 2023 16:05:32 +0300 Subject: [PATCH] BuildSystem: remove sse and sse2 from userspace --- userspace/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/userspace/CMakeLists.txt b/userspace/CMakeLists.txt index 0138f20e..e08c40b4 100644 --- a/userspace/CMakeLists.txt +++ b/userspace/CMakeLists.txt @@ -17,6 +17,7 @@ add_custom_target(userspace) add_custom_target(userspace-install DEPENDS userspace) foreach(USERSPACE_PROJECT ${USERSPACE_PROJECTS}) + target_compile_options(${USERSPACE_PROJECT} PUBLIC -mno-sse -mno-sse2) add_dependencies(userspace ${USERSPACE_PROJECT}) add_dependencies(userspace-install ${USERSPACE_PROJECT}-install) endforeach()