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:
authorNathan Letwory <nathan@letworyinteractive.com>2012-04-27 17:18:55 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2012-04-27 17:18:55 +0400
commita299855e34ce4321b2e508646965403f56d6ddc5 (patch)
treeff371a7ce5633440c6850588f1e5a48b83b3de73 /build_files/buildbot/slave_compile.py
parentdbe68289f4c7c4b7064bb05f27457f76d54e2db8 (diff)
Changes to get mingw buildslaves going.
Diffstat (limited to 'build_files/buildbot/slave_compile.py')
-rw-r--r--build_files/buildbot/slave_compile.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/build_files/buildbot/slave_compile.py b/build_files/buildbot/slave_compile.py
index 209253296be..eafdf0868cd 100644
--- a/build_files/buildbot/slave_compile.py
+++ b/build_files/buildbot/slave_compile.py
@@ -117,6 +117,8 @@ else:
scons_options.append('BF_BITNESS=' + bitness)
scons_options.append('WITH_BF_CYCLES_CUDA_BINARIES=True')
scons_options.append('BF_CYCLES_CUDA_NVCC=nvcc.exe')
+ if builder.find('mingw') != -1:
+ scons_options.append('BF_TOOLSET=mingw')
retcode = subprocess.call(['python', 'scons/scons.py'] + scons_options)
sys.exit(retcode)