Buildbot OS X: compile with clang instead of GCC.

This should solve the missing -mavx option for Cycles, and also give better
performance since GCC 4.2 is now 5 years old already.
This commit is contained in:
Brecht Van Lommel 2014-01-27 17:14:16 +01:00
parent 0c6a01ca00
commit 60287e23b5
2 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,8 @@
CC = 'clang'
CXX = 'clang++'
MACOSX_ARCHITECTURE = 'i386' # valid archs: ppc, i386, ppc64, x86_64
WITH_BF_CYCLES_CUDA_BINARIES = True

View File

@ -1,2 +1,7 @@
CC = 'clang'
CXX = 'clang++'
MACOSX_ARCHITECTURE = 'x86_64' # valid archs: ppc, i386, ppc64, x86_64
WITH_BF_CYCLES_CUDA_BINARIES = True
WITH_BF_CYCLES_CUDA_BINARIES = True