Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Carlisle <Blendify>2020-11-12 01:08:04 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2020-11-12 01:08:48 +0300
commit2ef2b3e0fd0080f7d22d91b1026ce0706b66ee52 (patch)
treec776254e13a996b6b366f017c261dcd4910d24f7 /source/blender/render/CMakeLists.txt
parent1043ec7991732476686a697048cf8cc5f183e3dc (diff)
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
Diffstat (limited to 'source/blender/render/CMakeLists.txt')
-rw-r--r--source/blender/render/CMakeLists.txt8
1 files changed, 0 insertions, 8 deletions
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}")