mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-21 02:45:00 +00:00
added DT_INIT.DT_FINI,DT_OS_PLTGOT,DT_OS_SYMTAB,DT_OS_SYMTABSZ
This commit is contained in:
parent
8932be618b
commit
d995a0e286
3 changed files with 45 additions and 5 deletions
|
@ -23,6 +23,14 @@ struct DynamicModuleInfo
|
|||
|
||||
char* str_table = nullptr;
|
||||
u64 str_table_size = 0;
|
||||
|
||||
elf_symbol* symbol_table = nullptr;
|
||||
u64 symbol_table_total_size = 0;
|
||||
|
||||
u64 init_virtual_addr = 0;
|
||||
u64 fini_virtual_addr = 0;
|
||||
u64 pltgot_virtual_addr = 0;
|
||||
|
||||
};
|
||||
|
||||
class Linker
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue