4

是否可以在 GCC 命令行中列出任何库/头文件中可用的所有库函数?有什么类似于可用于 Java 的 JAVAP 之类的程序吗?谢谢。

4

1 回答 1

1

您可以使用 objdump 列出共享库(或可执行文件)中的符号:

$objdump -T /usr/lib/libclang.so
<...snipped...>
0000000000124150 g    DF .text  00000000000000c1  Base        clang_reparseTranslationUnit
000000000010fe40 g    DF .text  0000000000000021  Base        clang_getNullRange
0000000000135760 g    DF .text  000000000000009f  Base        clang_getPointeeType
0000000000124290 g    DF .text  0000000000000289  Base        clang_parseTranslationUnit
000000000012b790 g    DF .text  0000000000000935  Base        clang_findReferencesInFile
0000000000110b80 g    DF .text  000000000000001c  Base        clang_getRangeEnd
0000000000127d20 g    DF .text  0000000000000022  Base        clang_disposeCodeCompleteResults
0000000000135e10 g    DF .text  0000000000000037  Base        clang_isPODType

000000000010f870 g DF .text 0000000000000025 基础 clang_getTranslationUnitCursor 0000000000129b50 g DF .text 00000000000002c1 基础 clang_getDiagnosticOption

如您所见,它列出了不同的符号及其相对地址。

于 2013-07-06T10:07:10.833 回答