[XML-SIG] Nastiness in xml/extensions/pyexpat.c

Martin v. Loewis martin@v.loewis.de
10 Jun 2002 10:34:23 +0200


Uche Ogbuji <uche.ogbuji@fourthought.com> writes:

> Does anyone know how to get DDD to load symbols for an so that has not yet 
> been loaded?  This would have helped yesterday as well.

I think it is possible to set a breakpoint on "shared library events",
but I could not figure out right now how to do that. What helps is
calling dlopen, such as

(gdb) p dlopen("/usr/lib/libjpeg.so",2)
$9 = 135696400

The 2 is RTLD_NOW on Linux.

Regards,
Martin