Parse rodata too

ico
Adam Dunkels 2013-07-28 19:26:17 +02:00
parent bcdebf0e9d
commit 02c0b8a4e4
1 changed files with 2 additions and 0 deletions

View File

@ -192,6 +192,8 @@ find_local_symbol(int fd, const char *symbol,
sect = &bss;
} else if(s.st_shndx == data.number) {
sect = &data;
} else if(s.st_shndx == rodata.number) {
sect = &rodata;
} else if(s.st_shndx == text.number) {
sect = &text;
} else {