Re: [cgkit-user] cgkit on osx 10.5.6
Brought to you by:
mbaas
|
From: Matthias B. <mat...@gm...> - 2009-01-13 21:10:42
|
massimo di stefano wrote: > " from cgkit.all import * " > > having these error : > > macbook-pro-15-di-sasha:~ sasha$ python > Python 2.5.1 (r251:54863, Nov 11 2008, 17:46:48) > [GCC 4.0.1 (Apple Inc. build 5465)] on darwin > Type "help", "copyright", "credits" or "license" for more information. > >>> from cgkit.all import * > Traceback (most recent call last): > File "<stdin>", line 1, in <module> > File "/Library/Python/2.5/site-packages/cgkit/all/__init__.py", line > 46, in <module> > from cgkit import _core > ImportError: dlopen(/Library/Python/2.5/site-packages/cgkit/_core.so, > 2): Symbol not found: > __ZN5boost6python7objects9enum_baseC2EPKcPFP7_objectPKvEPFPvS6_EPFvS6_PNS0_9converter30rvalue_from_python_stage1_dataEENS0_9type_infoE > > Referenced from: /Library/Python/2.5/site-packages/cgkit/_core.so > Expected in: dynamic lookup Looks like there is still a problem with linking boost (or finding the dynamic library). Can you please check the dependencies of _core.so using otool -L? Are you sure the boost libs are in a directory that is included in the library search? Maybe as a workaround, can you try compiling against the static version of Boost.Python? - Matthias - |