Skip to content
Snippets Groups Projects

Add inspect-library helper

Merged Ludovico de Nittis requested to merge wip/denittis/inspect-library into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -57,7 +57,7 @@ main (int argc,
soname = argv[1];
printf ("{\n");
printf (" \"%s\": {", soname);
handle = dlopen (soname, RTLD_LAZY);
handle = dlopen (soname, RTLD_NOW);
if (handle == NULL)
{
fprintf (stderr, "Unable to find the library: %s\n", dlerror ());
Loading