struct protolib* plib = lib->protolib;
Dwfl* dwfl = lib->dwfl;
+ debug(DEBUG_FUNCTION, "Importing DWARF prototypes from '%s'", lib->soname);
if (plib == NULL) {
const char* soname_dup = strdup(lib->soname);
#include "value.h"
#include "value_dict.h"
#include "filter.h"
+#include "debug.h"
#if defined(HAVE_LIBDW)
#include "dwarf_prototypes.h"
filter_matches_library(options.static_filter, lib ) ||
filter_matches_library(options.export_filter, lib )))
import_DWARF_prototypes(lib);
+ else
+ debug(DEBUG_FUNCTION, "Filter didn't match prototype '%s' in lib '%s'. Not importing",
+ name, lib->soname);
#endif
if (lib->protolib == NULL)