Bug 727959 - Add symbol name to relocation errors in the linker. r=tglek

This commit is contained in:
Mike Hommey 2012-02-21 08:10:43 +01:00
Родитель c3d9ce8c6d
Коммит 7b29e7253a
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -628,7 +628,8 @@ CustomElf::RelocateJumps()
symptr = GetSymbolPtrInDeps(strtab.GetStringAt(sym.st_name));
if (symptr == NULL) {
log("%s: Error: relocation to NULL @0x%08" PRIxAddr, GetPath(), rel->r_offset);
log("%s: Error: relocation to NULL @0x%08" PRIxAddr " for symbol \"%s\"",
GetPath(), rel->r_offset, strtab.GetStringAt(sym.st_name));
return false;
}
/* Apply relocation */