Buildbot: Tweaks to current macOS config

Also disable CUDA binaries for now, those would need some extra work.
This commit is contained in:
Sergey Sharybin
2017-10-01 09:59:50 +02:00
parent 88a08ef8ad
commit ca3f7021de

View File

@@ -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'):