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>2013-01-10 12:55:44 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-01-10 12:55:44 +0400
commit93c82483c7bf27f2c067c1dd634940b28074244c (patch)
treebb97538f70ab3621b510ece26aea4005b758a34d /build_files/buildbot/slave_compile.py
parent7c64109bce446b91f35e187f081f3244c5c92522 (diff)
Further tweaks to buildbot
- BF_BITNESS should be passed as a command line argument - Made it so CUDA binaries and OSL compiled scripts would be installed regardless WITH_BF_PYTHON (which seems to be quite obvious) - Disable overwrite install, so CUDA kernels installed by it's build target will be preserved when building blender itself.
Diffstat (limited to 'build_files/buildbot/slave_compile.py')
-rw-r--r--build_files/buildbot/slave_compile.py12
1 files changed, 9 insertions, 3 deletions
diff --git a/build_files/buildbot/slave_compile.py b/build_files/buildbot/slave_compile.py
index b66a09afe25..dab8a8e6483 100644
--- a/build_files/buildbot/slave_compile.py
+++ b/build_files/buildbot/slave_compile.py
@@ -64,7 +64,8 @@ else:
if builder.endswith('linux_glibc211_x86_64_scons'):
configs = ['user-config-player-glibc211-x86_64.py',
'user-config-cuda-glibc211-x86_64.py',
- 'user-config-glibc211-x86_64.py']
+ 'user-config-glibc211-x86_64.py'
+ ]
chroot_name = 'buildbot_squeeze_x86_64'
cuda_chroot = 'buildbot_squeeze_x86_64'
elif builder.endswith('linux_glibc211_i386_scons'):
@@ -77,8 +78,8 @@ else:
cuda_chroot = 'buildbot_squeeze_x86_64'
# Compilation will happen inside of chroot environment
- prog_scons_cmd = ['schroot', '-c', chroot_name] + scons_cmd
- cuda_scons_cmd = ['schroot', '-c', cuda_chroot] + scons_cmd
+ prog_scons_cmd = ['schroot', '-c', chroot_name, '--'] + scons_cmd
+ cuda_scons_cmd = ['schroot', '-c', cuda_chroot, '--'] + scons_cmd
# We're using the same rules as release builder, so tweak
# build and install dirs
@@ -112,6 +113,11 @@ else:
elif config.find('cuda') != -1:
scons_options.append('cudakernels')
cur_scons_cmd = cuda_scons_cmd
+
+ if config.find('i686') != -1:
+ scons_options.append('BF_BITNESS=32')
+ elif config.find('x86_64') != -1:
+ scons_options.append('BF_BITNESS=64')
else:
scons_options.append('blender')
cur_scons_cmd = prog_scons_cmd