NM.1
资源名称:os_source.zip [点击查看]
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:1k
源码类别:
操作系统开发
开发平台:
C/C++
- NM(1) Minix Programmer's Manual NM(1)
- NAME
- nm - print name list
- SYNOPSIS
- nm [-dgnopru] [file] ...
- OPTIONS
- -d Print the offsets in decimal instead of in hex
- -g Print only external symbols
- -n Sort numerically rather than alphabetically
- -o Prepend file name to each line rather than only once
- -p Do not sort, print in symbol-table order
- -r Sort in reverse order
- -u Print only undefined symbols
- EXAMPLES
- nm -n a.out # Print all symbols in numerical order
- nm -dg a.out # Print globals alphabetically in decimal
- DESCRIPTION
- Nm prints the symbol table of executable files when it is available. If
- no file is given, the symbols in a.out are used. The format of the table
- is somewhat compatible with the one produced by asld when used with the
- -s option. The symbol table can be added with ast. Assembly language
- files do not have symbol tables.
- SEE ALSO
- anm(1), asize(1), ar(1), size(1).
- 1