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
path: root/tools
diff options
context:
space:
mode:
authorJoshua Leung <aligorith@gmail.com>2007-11-29 09:31:36 +0300
committerJoshua Leung <aligorith@gmail.com>2007-11-29 09:31:36 +0300
commit4b37ee227e871fecb50e5df7caea068fb2951609 (patch)
treef08159462042b1839594ae373acc1c40039b4796 /tools
parent2a4f31e2a5049c211a489da53a58969000356572 (diff)
Scons Compiling Hack:
Restoring the "evil src splitting hack" for scons+mingw systems. By default, it is not used, but if your system is choking when trying to link src, then add BF_SPLIT_SRC=1 to your user-config.py to use this hack.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/btools.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/btools.py b/tools/btools.py
index eb8f844df4d..455335ab895 100755
--- a/tools/btools.py
+++ b/tools/btools.py
@@ -54,7 +54,7 @@ def validate_arguments(args, bc):
'BF_PROFILE_FLAGS', 'LCGDIR', 'WITH_BF_VERSE',
'BF_VERSE_INCLUDE',
'VERSE_BUILD_BINARY', 'VERSE_BUILD_DIR', 'VERSE_REGEN_PROTO',
- 'BF_TWEAK_MODE',
+ 'BF_TWEAK_MODE', 'BF_SPLIT_SRC',
'WITHOUT_BF_INSTALL'
]
@@ -297,6 +297,7 @@ def read_opts(cfg, args):
(BoolOption('BF_BUILDINFO', 'Buildtime in splash if true', 'true')),
(BoolOption('BF_TWEAK_MODE', 'Enable tweak mode if true', 'false')),
+ (BoolOption('BF_SPLIT_SRC', 'Split src lib into several chunks if true', 'false')),
(BoolOption('WITHOUT_BF_INSTALL', 'dont install if true', 'false')),
) # end of opts.AddOptions()