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-08-27 13:22:44 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2015-08-27 13:22:44 +0300
commit90f667576fa50c66d91d48226d7c6fa1a728cb59 (patch)
tree46d3504e003f78612ab53bb0bcdf0f64ec6ba52b /build_files
parent067fe2719a993419ba64db2f4028d68139d64617 (diff)
Buildbot: Correction to previous commit
Previous commit didn't really disable cuda binaries for some reason.
Diffstat (limited to 'build_files')
-rw-r--r--build_files/buildbot/slave_compile.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/build_files/buildbot/slave_compile.py b/build_files/buildbot/slave_compile.py
index 87beca28a66..ee89bc90225 100644
--- a/build_files/buildbot/slave_compile.py
+++ b/build_files/buildbot/slave_compile.py
@@ -54,6 +54,8 @@ if 'cmake' in builder:
cmake_options.append("-C../blender.git/build_files/cmake/config/blender_full.cmake")
if 'win32' not in builder:
cmake_options.append("-DWITH_CYCLES_CUDA_BINARIES=1")
+ else:
+ cmake_options.append("-DWITH_CYCLES_CUDA_BINARIES=0")
# configure and make
retcode = subprocess.call(['cmake', blender_dir] + cmake_options)
if retcode != 0: