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 13:19:02 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2015-12-20 13:19:02 +0300
commitf01714506a393c8a0b6240633e09a97cab4727ab (patch)
treec88c2be5bf3b2ffd01c40e1b713dbc5277a1eb93 /build_files
parent3566d0d3a6789514a5c95fbbc2c30c3352f5c5e4 (diff)
Buildbot: Disable CUDA binaries for 32bit OSX slave
Funny thing, 32bit OSX slave was always building 64bit CUDA kernels and nobody never noticed this..
Diffstat (limited to 'build_files')
-rw-r--r--build_files/buildbot/slave_compile.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/build_files/buildbot/slave_compile.py b/build_files/buildbot/slave_compile.py
index ff7fb873835..4ca57f39562 100644
--- a/build_files/buildbot/slave_compile.py
+++ b/build_files/buildbot/slave_compile.py
@@ -62,6 +62,7 @@ if 'cmake' in builder:
if builder.endswith('x86_64_10_6_cmake'):
cmake_options.append('-DCMAKE_OSX_ARCHITECTURES:STRING=x86_64')
elif builder.endswith('i386_10_6_cmake'):
+ build_cubins = False
cmake_options.append('-DCMAKE_OSX_ARCHITECTURES:STRING=i386')
# Some special options to disable usupported features
cmake_options.append("-DWITH_CYCLES_OSL=OFF")