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>2016-08-01 17:25:03 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-08-01 17:25:03 +0300
commit473fc0cf0e469e61568b39faf770990a2a3d6c22 (patch)
tree315e774dd28821d48a1cf9e2467f2d6eaf1b55a3 /build_files
parent98b8a68f9d46de4506d754df462acf375d05b9ed (diff)
Buildbot: Seems quotes are not really needed when passing list
Diffstat (limited to 'build_files')
-rw-r--r--build_files/buildbot/slave_compile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_files/buildbot/slave_compile.py b/build_files/buildbot/slave_compile.py
index 92f46884b3d..f0b928320ea 100644
--- a/build_files/buildbot/slave_compile.py
+++ b/build_files/buildbot/slave_compile.py
@@ -112,7 +112,7 @@ if 'cmake' in builder:
# Prepare CMake options needed to configure cuda binaries compilation.
cuda_cmake_options.append("-DWITH_CYCLES_CUDA_BINARIES=%s" % ('ON' if build_cubins else 'OFF'))
- cuda_cmake_options.append("-DCYCLES_CUDA_BINARIES_ARCH=\"sm_20;sm_21;sm_30;sm_35;sm_37;sm_50;sm_52;sm_60\"")
+ cuda_cmake_options.append("-DCYCLES_CUDA_BINARIES_ARCH=sm_20;sm_21;sm_30;sm_35;sm_37;sm_50;sm_52;sm_60")
if build_cubins or 'cuda' in targets:
if bits == 32:
cuda_cmake_options.append("-DCUDA_64_BIT_DEVICE_CODE=OFF")