mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-11-19 18:40:17 +00:00
Parse rodata too
This commit is contained in:
parent
bcdebf0e9d
commit
02c0b8a4e4
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user