Source file src/cmd/nm/doc.go
1 // Copyright 2009 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 /* 6 7 Nm is a version of the Plan 9 nm command. The original is documented at 8 9 http://plan9.bell-labs.com/magic/man2html/1/nm 10 11 It prints the name list (symbol table) for programs compiled by gc as well as the 12 Plan 9 C compiler. 13 14 This implementation adds the flag -S, which prints each symbol's size 15 in decimal after its address. 16 17 For reasons of disambiguation it is installed as 6nm although it also serves 18 as an 8nm and a 5nm. 19 20 */ 21 package documentation