Rename the static_symbol API into symtab_symbol

This commit is contained in:
Romain Thomas
2024-02-03 06:31:30 +01:00
parent acadc088ed
commit cddd8dd076
32 changed files with 1886 additions and 2100 deletions
@@ -40,7 +40,7 @@ void create<ParserConfig>(nb::module_& m) {
"Whether relocations (including plt-like relocations) should be parsed."_doc)
.def_rw("parse_dyn_symbols", &ParserConfig::parse_dyn_symbols,
"Whether dynamic symbols (those from `.dynsym`) should be parsed"_doc)
.def_rw("parse_static_symbols", &ParserConfig::parse_static_symbols,
.def_rw("parse_symtab_symbols", &ParserConfig::parse_symtab_symbols,
"Whether debug symbols (those from `.symtab`) should be parsed"_doc)
.def_rw("parse_symbol_versions", &ParserConfig::parse_symbol_versions,
"Whether versioning symbols should be parsed"_doc)