[Bf-blender-cvs] [6d705693a33] master: Fix Linux CentOS buildbot handing on ffmpeg test

Brecht Van Lommel noreply at git.blender.org
Thu Feb 27 12:33:09 CET 2020


Commit: 6d705693a33582b292fa26f7268470f1cfa35190
Author: Brecht Van Lommel
Date:   Thu Feb 27 12:27:57 2020 +0100
Branches: master
https://developer.blender.org/rB6d705693a33582b292fa26f7268470f1cfa35190

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.

===================================================================

M	intern/libc_compat/CMakeLists.txt

===================================================================

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



More information about the Bf-blender-cvs mailing list