NM.1
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:1k
源码类别:

操作系统开发

开发平台:

C/C++

  1. NM(1)                     Minix Programmer's Manual                      NM(1)
  2. NAME
  3.      nm - print name list
  4. SYNOPSIS
  5.      nm [-dgnopru] [file] ...
  6. OPTIONS
  7.      -d   Print the offsets in decimal instead of in hex
  8.      -g   Print only external symbols
  9.      -n   Sort numerically rather than alphabetically
  10.      -o   Prepend file name to each line rather than only once
  11.      -p   Do not sort, print in symbol-table order
  12.      -r   Sort in reverse order
  13.      -u   Print only undefined symbols
  14. EXAMPLES
  15.      nm -n a.out         # Print all symbols in numerical order
  16.      nm -dg a.out        # Print globals alphabetically in decimal
  17. DESCRIPTION
  18.      Nm prints the symbol table of executable files when it is available.   If
  19.      no  file is given, the symbols in a.out are used. The format of the table
  20.      is somewhat compatible with the one produced  by asld when used with  the
  21.      -s  option.  The  symbol  table  can be added with ast. Assembly language
  22.      files do not have symbol tables.
  23. SEE ALSO
  24.      anm(1), asize(1), ar(1), size(1).
  25.                                                                              1