在GCC中列出库函数

时间:2013-07-05 17:15:29

标签: c++ c gcc

是否可以列出GCC命令行中任何库/标题中可用的所有库函数? 有什么类似于JAVAP这样可用于Java的程序吗? 感谢。

1 个答案:

答案 0 :(得分: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
<00> 000000000010f870 g DF .text 0000000000000025 Base clang_getTranslationUnitCursor 0000000000129b50 g DF .text 00000000000002c1 Base clang_getDiagnosticOption

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