|
From: Julian S. <js...@ac...> - 2010-02-15 09:23:38
|
> --4274-- Reading debug info from /lib/libc-2.10.1.so ..
> --4274-- .. CRC mismatch (computed e2035481 wanted a2d8b96b)
> --4274-- Reading debug info from /usr/lib/debug/lib/libc-2.10.1.so ..
Seems like find_debug_file calls open_debug_file with various different
names to see if any of them actually exists. This seems to produce
the confusing messages:
if ((addr = open_debug_file(debugpath, crc, size)) == 0) {
VG_(sprintf)(debugpath, "%s/.debug/%s", objdir, debugname);
if ((addr = open_debug_file(debugpath, crc, size)) == 0) {
VG_(sprintf)(debugpath, "/usr/lib/debug%s/%s", objdir, debugname);
addr = open_debug_file(debugpath, crc, size);
}
}
J
|