ANM.1
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:2k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. ANM(1)                    Minix Programmer's Manual                     ANM(1)
  2. NAME
  3.      anm - print name list
  4. SYNOPSIS
  5.      anm [-gnoprus] file ...
  6. OPTIONS
  7.      -g   Global symbols only
  8.      -n   Sort numerically
  9.      -o   Prepend the filename to each line
  10.      -p   No sorting----use symbol table order
  11.      -r   Sort in reverse order
  12.      -u   List undefined symbols only
  13.      -s   Sort in section order
  14. EXAMPLES
  15.      anm  -gn  test.o    # Print global symbols in numerical order
  16. DESCRIPTION
  17.      Anm prints the name list (symbol table) of each ACK format object file in
  18.      the argument list.  If no file name is given, a.out is used.  Each symbol
  19.      name is preceded by its value, a section indicator and a type  indicator.
  20.      The section indicators are:
  21.         U  Undefined symbol
  22.         A  Absolute symbol
  23.         -  Other symbol
  24.      The type indicators are:
  25.         F  Filename
  26.         M  Module name
  27.         S  Section name
  28.         E  External (global) symbol
  29.         -  Local symbol
  30.      The output is sorted alphabetically, unless otherwise specified.   Notice
  31.      that  anm  can  only  be used on ACK format object files (that is: .o and
  32.      .out files). If you want to get the name list of  an  executable  program
  33.      use nm instead.
  34.                                                                              1
  35. ANM(1)                    Minix Programmer's Manual                     ANM(1)
  36. SEE ALSO
  37.      asize(1), nm(1), ar(1), size(1).
  38.                                                                              2