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>2017-10-01 10:59:50 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-10-01 11:00:42 +0300
commitca3f7021de995dc088896324c781e2f17e9b125f (patch)
treea131023148c3f2db5b51789f73b8d854a6fb35e8 /build_files
parent88a08ef8ad4149c5f6d2badf6d9a1e55f096fb92 (diff)
Buildbot: Tweaks to current macOS config
Also disable CUDA binaries for now, those would need some extra work.
Diffstat (limited to 'build_files')
-rw-r--r--build_files/buildbot/slave_compile.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/build_files/buildbot/slave_compile.py b/build_files/buildbot/slave_compile.py
index 84f924b2dd9..88da5ca956c 100644
--- a/build_files/buildbot/slave_compile.py
+++ b/build_files/buildbot/slave_compile.py
@@ -70,13 +70,12 @@ if 'cmake' in builder:
if builder.startswith('mac'):
# Set up OSX architecture
- if builder.endswith('x86_64_10_6_cmake'):
+ 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.6')
+ 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')
-
-
+ build_cubins = False
elif builder.startswith('win'):
if builder.endswith('_vc2015'):