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>2018-02-23 12:55:14 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-02-23 12:55:26 +0300
commit07f05e294a0ca3f731233489cf62f6efec522288 (patch)
treef9661f35d7920cfa6b336d448e3dc577545f6158 /build_files
parent6618852b7f11fe097dfe817d6af09e4d535e000e (diff)
Buildbot: Disable cuda hack for macOS
Diffstat (limited to 'build_files')
-rw-r--r--build_files/buildbot/slave_compile.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/build_files/buildbot/slave_compile.py b/build_files/buildbot/slave_compile.py
index f2f8edc614d..b3bf83f6231 100644
--- a/build_files/buildbot/slave_compile.py
+++ b/build_files/buildbot/slave_compile.py
@@ -73,8 +73,9 @@ if 'cmake' in builder:
if builder.endswith('x86_64_10_9_cmake'):
cmake_extra_options.append('-DCMAKE_OSX_ARCHITECTURES:STRING=x86_64')
cmake_extra_options.append('-DCMAKE_OSX_DEPLOYMENT_TARGET=10.9')
- cmake_extra_options.append('-DCUDA_HOST_COMPILER=/usr/local/cuda-hack/clang')
- cmake_extra_options.append('-DCUDA_NVCC_EXECUTABLE=/usr/local/cuda-hack/nvcc')
+ # Used to trick CUDFA to see CLang as an older version.
+ # cmake_extra_options.append('-DCUDA_HOST_COMPILER=/usr/local/cuda-hack/clang')
+ # cmake_extra_options.append('-DCUDA_NVCC_EXECUTABLE=/usr/local/cuda-hack/nvcc')
elif builder.startswith('win'):
if builder.endswith('_vc2015'):