How do i find out what all symbols are exported from a shared object?

后端 未结 9 1597
傲寒
傲寒 2020-11-29 15:49

I have a shared object(dll). How do i find out what all symbols are exported from that?

9条回答
  •  一整个雨季
    2020-11-29 16:02

    You can use gnu objdump. objdump -p your.dll. Then pan to the .edata section contents and you'll find the exported functions under [Ordinal/Name Pointer] Table.

提交回复
热议问题