I'm trying to use some proprietary C++ code in a Perl module.
I have seen it is easy to debug if something goes wrong at compiling time by just enabling the BUILD_NOISY flag.
In my case the problem comes at running time...the code C++ works fine when compiled in stand alone, but when I embed it in Perl my code crash at runtime.
The only message I get is this one:
perl: symbol lookup error: <my_library>.so: undefined symbol: _ZN12LocationTree4LoadERKSs
Is there any way of having a more verbose output ?