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
This commit is contained in:
Aaron Carlisle 2020-11-11 17:08:04 -05:00 committed by Aaron Carlisle
parent 1043ec7991
commit 2ef2b3e0fd
Notes: blender-bot 2023-02-14 02:27:56 +01:00
Referenced by issue #82628, Blender crashes on startup
1 changed files with 0 additions and 8 deletions

View File

@ -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}")