RE: Unresolved Externals
Posted by Luigi Ballabio-2 on Jul 02, 2003; 4:43am
URL: http://quantlib.414.s1.nabble.com/Unresolved-Externals-tp10261p10265.html
At 12:26 PM 7/2/03 +0200, Andre Louw wrote:
>I did a CVS update of both projects directly after each other, so I would
>assume I have the latest source.
>
>I'm still worried that I might have an old version of something lying around
>- please confirm that deleting all QuantLib.so*, _QuantLib.so, QuantLib.py,
>QuantLib.pyc files should do the trick?
It should. Maybe a
$ locate QuantLib | grep /usr
would round up some more suspects... also, when you've located your
(hopefully unique) libQuantLib.so,
$ nm /usr/local/lib/libQuantLib.so | grep blackVarianceImpl
(or wherever it's installed if not /usr/local/lib) should tell you whether
the missing external is actually defined.
Later,
Luigi