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-28 10:28:07 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2012-04-28 10:28:07 +0400
commit09dc600839904a198ab4ba3fad62ce58c2d3aa07 (patch)
tree23b788f63dfc21f5d2411dd05015bbcd259a5284
parentdc313ff00d8e5c8681fb6d923b3da0d0b7ffbdac (diff)
Same mingw fix as for compile
-rw-r--r--build_files/buildbot/slave_pack.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/build_files/buildbot/slave_pack.py b/build_files/buildbot/slave_pack.py
index cb02e619c1d..73c633d0c29 100644
--- a/build_files/buildbot/slave_pack.py
+++ b/build_files/buildbot/slave_pack.py
@@ -81,6 +81,8 @@ if builder.find('scons') != -1:
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)