From 2ef2b3e0fd0080f7d22d91b1026ce0706b66ee52 Mon Sep 17 00:00:00 2001 From: Aaron Carlisle Date: Wed, 11 Nov 2020 17:08:04 -0500 Subject: Cleanup: Remove SSE math optimization i386 macOS builds We haven't supported 32bit mac builds for a while so this should be safe to remove. Reviewed By: #platform_macos, brecht Differential Revision: https://developer.blender.org/D9489 --- source/blender/render/CMakeLists.txt | 8 -------- 1 file changed, 8 deletions(-) (limited to 'source/blender/render') diff --git a/source/blender/render/CMakeLists.txt b/source/blender/render/CMakeLists.txt index 2516c015924..d1f69ddfc02 100644 --- a/source/blender/render/CMakeLists.txt +++ b/source/blender/render/CMakeLists.txt @@ -98,13 +98,5 @@ if(WITH_INTERNATIONAL) add_definitions(-DWITH_INTERNATIONAL) endif() -if(APPLE) - # SSE math is enabled by default on x86_64 - if(CMAKE_OSX_ARCHITECTURES MATCHES "i386") - string(APPEND CMAKE_C_FLAGS_RELEASE " -mfpmath=sse") - string(APPEND CMAKE_CXX_FLAGS_RELEASE " -mfpmath=sse") - endif() -endif() - blender_add_lib_nolist(bf_render "${SRC}" "${INC}" "${INC_SYS}" "${LIB}") -- cgit v1.2.3