Page 1 of 1

Is there a possibility to debug a shared object?

Posted: Wed Sep 30, 2009 11:56 am
by Rozek
Hello!

I've just created a small .so file which I would like to use in another environment. Currently, that environment crashes after loading my library - presumably because it's always difficult to get all the pointer stuff right.

Is there a possibility to "debug" a .so library which was built using PB (but is used somewhere else)?

Thanks in advance for any response!

Re: Is there a possibility to debug a shared object?

Posted: Wed Sep 30, 2009 1:08 pm
by Rozek
By the way,

I solved my original problem:

if you want to use PB to build a "bundle" which is then used in other programs, please use ProcedureCDLL (mind the *C*!) rather than ProcedureDLL!

I now know again why I hate C and C++...