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()