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

Brecht Van Lommel brechtvanlommel at pandora.be
Tue Jun 4 13:21:18 CEST 2013


Fix committed, thanks for the patch.

On Mon, Jun 3, 2013 at 9:19 PM, Jochen Schmitt <Jochen at herr-schmitt.de> wrote:
> 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;
>  }
> _______________________________________________
> Bf-committers mailing list
> Bf-committers at blender.org
> http://lists.blender.org/mailman/listinfo/bf-committers


More information about the Bf-committers mailing list