From 3471fde8cc0f226698c36e7a8eadcecd366fe830 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Wed, 26 Jun 2019 15:33:14 +0200 Subject: 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. --- build_files/buildbot/slave_compile.py | 3 +-- 1 file changed, 1 insertion(+), 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: -- cgit v1.2.3