nm 命令

最好是閱讀 man nm


nm - list symbols from object files


If lowercase, the symbol is local; if uppercase, the symbol is global (external)


其輸出結果:

  "A" The symbol’s value is absolute, and will not be changed by further linking.


  "B"/"b" The symbol is in the uninitialized data section (known as BSS).


   "C" The symbol is common.  Common symbols are uninitialized data.  When linking, multiple common symbols may appear with the same name.  If the symbol is defined anywhere, the common symbols are treated as undefined references.


"D"/"d" The symbol is in the initialized data section.

 "T"/"t" The symbol is in the text (code) section.

"U" The symbol is undefined.

"u" The symbol is a unique global symbol.  This is a GNU extension to the standard set of ELF symbol bindings.  For such a symbol the dynamic linker will make sure that in the entire process there is just one symbol with this name and type in use.


"S"/"s" The symbol is in an uninitialized data section for small objects.


AGlobal absolute 符號。
aLocal absolute 符號。
BGlobal bss 符號。
bLocal bss 符號。
DGlobal data 符號。
dLocal data 符號。
f源文件名稱符號。
TGlobal text 符號。
tLocal text 符號。
U未定義符號。


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章