[Bf-committers] [PATCH] Fix Build issue on non-x86 arches

Jochen Schmitt Jochen at herr-schmitt.de
Mon Jun 3 21:19:53 CEST 2013


Hello,

I have got the following patch from another Fedora developer which should
solve build issues on non-x86 arches.

It may be nice, if anyone have a look on it.

Best Regards:

Jochen Schmitt

diff -up blender-2.67a/intern/cycles/util/util_system.cpp.non-x86 blender-2.67a/intern/cycles/util/util_system.cpp
--- blender-2.67a/intern/cycles/util/util_system.cpp.non-x86	2013-05-26 14:48:10.000000000 +0200
+++ blender-2.67a/intern/cycles/util/util_system.cpp	2013-05-26 14:48:27.000000000 +0200
@@ -199,7 +199,12 @@ bool system_cpu_support_sse3()
 
 #else
 
-bool system_cpu_support_optimized()
+bool system_cpu_support_sse2()
+{
+	return false;
+}
+
+bool system_cpu_support_sse3()
 {
 	return false;
 }


More information about the Bf-committers mailing list