Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2015-12-20 12:22:34 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2015-12-20 12:22:34 +0300
commit2fff2f651e085cb76078ecfb44f719a5e1b47be3 (patch)
tree2b8966fd228a796fe13a7bd12cf710ae2e8c824d /build_files/buildbot
parent5a5b5403567d0ec0b921b774252a5d1331de90b4 (diff)
Buildbot: Disable some unsupported features for 32bit OSX CMake slave
Diffstat (limited to 'build_files/buildbot')
-rw-r--r--build_files/buildbot/slave_compile.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/build_files/buildbot/slave_compile.py b/build_files/buildbot/slave_compile.py
index a0b2b6362d3..ff7fb873835 100644
--- a/build_files/buildbot/slave_compile.py
+++ b/build_files/buildbot/slave_compile.py
@@ -63,6 +63,9 @@ if 'cmake' in builder:
cmake_options.append('-DCMAKE_OSX_ARCHITECTURES:STRING=x86_64')
elif builder.endswith('i386_10_6_cmake'):
cmake_options.append('-DCMAKE_OSX_ARCHITECTURES:STRING=i386')
+ # Some special options to disable usupported features
+ cmake_options.append("-DWITH_CYCLES_OSL=OFF")
+ cmake_options.append("-DWITH_OPENCOLLADA=OFF")
elif builder.endswith('ppc_10_6_cmake'):
cmake_options.append('-DCMAKE_OSX_ARCHITECTURES:STRING=ppc')