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>2012-01-17 14:32:17 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-01-17 14:32:17 +0400
commit7a85ad51bfc302748b912ec6b69f647b6fd131b7 (patch)
treeffc3ffa64a49d47b05283527b94273d882ececdf /SConstruct
parent62f440a0b2d9a074de24ef0891d03c536f25cc1a (diff)
Compilation error when using mingw+scons
Error was caused by boost library (which doesn't seem to be working with Cycles too when compiling with mingw). Switched mingw to use TR1 unordered collections. Also, there was re-declaration of strcasecmp when mingw is used. Additional changes are related on using own process spawning when BF_TOOLSET is set to mingw. Seems to be working fine now (i've got too long command line error) and no warning are supressing now (as it was told in comment for commented own process spawning).
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct5
1 files changed, 2 insertions, 3 deletions
diff --git a/SConstruct b/SConstruct
index ee43015cf6e..0dd59add019 100644
--- a/SConstruct
+++ b/SConstruct
@@ -147,9 +147,8 @@ if toolset:
env.Tool('mstoolkit', [toolpath])
else:
env = BlenderEnvironment(tools=[toolset], ENV = os.environ)
- # xxx commented out, as was supressing warnings under mingw..
- #if env:
- # btools.SetupSpawn(env)
+ if env:
+ btools.SetupSpawn(env)
else:
if bitness==64 and platform=='win32':
env = BlenderEnvironment(ENV = os.environ, MSVS_ARCH='amd64')