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:
authorKen Hughes <khughes@pacific.edu>2008-04-17 23:01:00 +0400
committerKen Hughes <khughes@pacific.edu>2008-04-17 23:01:00 +0400
commita1689a5e9a86e1078e6665a38c26ef45c4a90048 (patch)
treee00f2dc95a7bd8b4d6261d1068a55cadca878e19 /tools/Blender.py
parent0ecf7a6f5bce3d2f3291e61823a0fc295c153a98 (diff)
Change scons so OpenMP library is appended at end of linkage line with other
libraries (fixes a problem with statically linking OpenMP).
Diffstat (limited to 'tools/Blender.py')
-rw-r--r--tools/Blender.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/Blender.py b/tools/Blender.py
index 967bf1fcd3c..30e9979cf9a 100644
--- a/tools/Blender.py
+++ b/tools/Blender.py
@@ -152,6 +152,8 @@ def setup_syslibs(lenv):
syslibs += Split(lenv['BF_GETTEXT_LIB'])
if lenv['WITH_BF_OPENAL']:
syslibs += Split(lenv['BF_OPENAL_LIB'])
+ if lenv['WITH_BF_OPENMP'] and lenv['CC'] != 'icc':
+ syslibs += ['gomp']
if lenv['WITH_BF_ICONV']:
syslibs += Split(lenv['BF_ICONV_LIB'])
if lenv['WITH_BF_OPENEXR']: