[Bf-blender-cvs] [3471fde8cc0] master: Buildbot: Cleanup, remove unused option

Sergey Sharybin noreply at git.blender.org
Wed Jun 26 15:42:53 CEST 2019


Commit: 3471fde8cc0f226698c36e7a8eadcecd366fe830
Author: Sergey Sharybin
Date:   Wed Jun 26 15:33:14 2019 +0200
Branches: master
https://developer.blender.org/rB3471fde8cc0f226698c36e7a8eadcecd366fe830

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.

===================================================================

M	build_files/buildbot/slave_compile.py

===================================================================

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:



More information about the Bf-blender-cvs mailing list