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>2019-06-26 16:33:14 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-06-26 16:42:46 +0300
commit3471fde8cc0f226698c36e7a8eadcecd366fe830 (patch)
tree8e0c984103688b5cd8c48a8eaab172ecf0455469
parent74ffcad90e2303eff2cf603b0e6008c1c82d341a (diff)
Buildbot: Cleanup, remove unused option
It was originally needed for various migration needs, now CUDA binaries are always to be built for 64 bit platforms and never to be built on 32bit platforms.
-rw-r--r--build_files/buildbot/slave_compile.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/build_files/buildbot/slave_compile.py b/build_files/buildbot/slave_compile.py
index 8b45bc77189..cfe7c0d6fe4 100644
--- a/build_files/buildbot/slave_compile.py
+++ b/build_files/buildbot/slave_compile.py
@@ -54,7 +54,6 @@ if 'cmake' in builder:
targets = ['blender']
chroot_name = None # If not None command will be delegated to that chroot
- build_cubins = True # Whether to build Cycles CUDA kernels
bits = 64
# Config file to be used (relative to blender's sources root)
@@ -101,7 +100,7 @@ if 'cmake' in builder:
cmake_options.append("-C" + os.path.join(blender_dir, cmake_config_file))
# Prepare CMake options needed to configure cuda binaries compilation, 64bit only.
- if bits == 64 and build_cubins:
+ if bits == 64:
cmake_options.append("-DWITH_CYCLES_CUDA_BINARIES=ON")
cmake_options.append("-DCUDA_64_BIT_DEVICE_CODE=ON")
else: