Command Line to see the contents Shared Object Module(lib*.so)

前端 未结 3 468
醉酒成梦
醉酒成梦 2021-02-01 15:34

What is the command line to see the contents of a Shared Object module (lib*.so)?

Like how we use:

ar -t lib*.a

for archives(lib*.a) an

3条回答
  •  日久生厌
    2021-02-01 16:08

    The nm -D command lists the dynamic symbols of your shared library, which seems to be exactly what you want.

提交回复
热议问题