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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2009-10-15 23:23:11 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2009-10-15 23:23:11 +0400
commitee1d5b5ee6e5814cc4fdae341cb17a8a5ec8fa9f (patch)
treece1a94dede238530050d287c274b3e1b8541b924 /source/blender/freestyle/SConscript
parentdc81204c91aac5ffe5c81051a905afca4aca14d4 (diff)
Fixed a linker issue resulting in undefined reference to Freestyle_Init.
The issue was caused by the order of libraries given to the linker. More specifically, libbf_python.a should precede libbf_freestyle.a, which is assured by choosing an appropriate 'priority' value of a BlenderLib.
Diffstat (limited to 'source/blender/freestyle/SConscript')
-rw-r--r--source/blender/freestyle/SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/freestyle/SConscript b/source/blender/freestyle/SConscript
index 430b93d408d..6fd6805bef9 100644
--- a/source/blender/freestyle/SConscript
+++ b/source/blender/freestyle/SConscript
@@ -80,6 +80,6 @@ env.BlenderLib (libname="bf_freestyle",
includes=Split(incs),
defines=defs,
libtype=['core'],
- priority = [25]
+ priority = [370] # bf_python is 361
)