[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [23870] branches/soc-2008-mxcurioni/source /blender/freestyle/SConscript: Fixed a linker issue resulting in undefined reference to Freestyle_Init.

Tamito Kajiyama rd6t-kjym at asahi-net.or.jp
Thu Oct 15 21:23:11 CEST 2009


Revision: 23870
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=23870
Author:   kjym3
Date:     2009-10-15 21:23:11 +0200 (Thu, 15 Oct 2009)

Log Message:
-----------
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.

Modified Paths:
--------------
    branches/soc-2008-mxcurioni/source/blender/freestyle/SConscript

Modified: branches/soc-2008-mxcurioni/source/blender/freestyle/SConscript
===================================================================
--- branches/soc-2008-mxcurioni/source/blender/freestyle/SConscript	2009-10-15 19:18:40 UTC (rev 23869)
+++ branches/soc-2008-mxcurioni/source/blender/freestyle/SConscript	2009-10-15 19:23:11 UTC (rev 23870)
@@ -80,6 +80,6 @@
                 includes=Split(incs),
                 defines=defs,
 				libtype=['core'],
-                priority = [25]
+                priority = [370] # bf_python is 361
  )
 





More information about the Bf-blender-cvs mailing list