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/config
diff options
context:
space:
mode:
authorKen Hughes <khughes@pacific.edu>2006-07-14 08:13:55 +0400
committerKen Hughes <khughes@pacific.edu>2006-07-14 08:13:55 +0400
commit9cc25e5a150c49f77dc6ad9503ca89ff3c6dfd67 (patch)
tree1a5f2e296e9ff546f5666c7c1bfbe36d2141835d /config
parent6a72f9f61dd4a9c5881388623e26a06f4c74efab (diff)
Make scons pick up default link flags from previous commit on linux platforms;
statically-linked python releases won't work otherwise. Bugfixes for #4676 and #4486.
Diffstat (limited to 'config')
-rw-r--r--config/linux2-config.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/config/linux2-config.py b/config/linux2-config.py
index 9cff1e13f47..0b6deab2c8d 100644
--- a/config/linux2-config.py
+++ b/config/linux2-config.py
@@ -4,6 +4,7 @@ BF_PYTHON_VERSION = '2.4'
BF_PYTHON_INC = '${BF_PYTHON}/include/python${BF_PYTHON_VERSION}'
BF_PYTHON_BINARY = '${BF_PYTHON}/bin/python${BF_PYTHON_VERSION}'
BF_PYTHON_LIB = 'python${BF_PYTHON_VERSION}' #BF_PYTHON+'/lib/python'+BF_PYTHON_VERSION+'/config/libpython'+BF_PYTHON_VERSION+'.a'
+BF_PYTHON_LINKFLAGS = ['-Xlinker', '-export-dynamic']
WITH_BF_OPENAL = 'true'
BF_OPENAL = '/usr'
@@ -147,8 +148,6 @@ BF_DEBUG_FLAGS = ''
BF_BUILDDIR = '../build/linux2'
BF_INSTALLDIR='../install/linux2'
-#Python linking
-PYTHON_LINKFLAGS = ['-Xlinker', '-export-dynamic']
#Link against pthread
PLATFORM_LINKFLAGS = ['-pthread']