temporally change for powerpc64-linux fc18

fc18 powerpc64's libc6-dbg has symtab/strtab but it can't be
referenced. therefore add workaround not to see them.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2014-03-26 21:46:23 +00:00
Родитель e6dcb3b174
Коммит c6aa2c467b
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -541,7 +541,7 @@ fill_lines(int num_traces, void **traces, int check_debuglink,
}
}
if (symtab_shdr && strtab_shdr) {
if (check_debuglink && symtab_shdr && strtab_shdr) {
char *strtab = file + strtab_shdr->sh_offset;
ElfW(Sym) *symtab = (ElfW(Sym) *)(file + symtab_shdr->sh_offset);
int symtab_count = (int)(symtab_shdr->sh_size / sizeof(ElfW(Sym)));