From 3fe117bd3dd1cf37ded1a08eab472e71c6f60713 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Tue, 4 Jun 2013 11:21:13 +0000 Subject: [PATCH] Fix build error on non-x86 architectures as pointed out by Jochen Schmitt. --- intern/cycles/util/util_system.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/intern/cycles/util/util_system.cpp b/intern/cycles/util/util_system.cpp index 4fda090e09e..c3ecc303a34 100644 --- a/intern/cycles/util/util_system.cpp +++ b/intern/cycles/util/util_system.cpp @@ -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; }