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:
authorBrecht Van Lommel <brecht@blender.org>2020-02-27 14:27:57 +0300
committerBrecht Van Lommel <brecht@blender.org>2020-02-27 14:30:29 +0300
commit6d705693a33582b292fa26f7268470f1cfa35190 (patch)
treea41db39d7757281ba4b512535030a4ae29872905
parent2515a125c8329eaa55a0ae5a36a5f3780b056ae4 (diff)
Fix Linux CentOS buildbot handing on ffmpeg test
Don't use -ffast-math functions for libc compatibility implementation, since then the function ends up calling itself. This may not be ideal for performance but should be insignificant in practice.
-rw-r--r--intern/libc_compat/CMakeLists.txt2
1 files changed, 0 insertions, 2 deletions
diff --git a/intern/libc_compat/CMakeLists.txt b/intern/libc_compat/CMakeLists.txt
index f8fede5673b..21d252806d4 100644
--- a/intern/libc_compat/CMakeLists.txt
+++ b/intern/libc_compat/CMakeLists.txt
@@ -32,6 +32,4 @@ set(SRC
set(LIB
)
-add_c_flag(-ffast-math)
-
blender_add_lib(bf_intern_libc_compat "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")