summaryrefslogtreecommitdiff
path: root/src/cmd/nm
Commit message (Collapse)AuthorAgeFilesLines
* go: makes it build for the case $GOROOT has whitespacesSergio Luis O. B. Correia2009-11-231-2/+2
| | | | | | | | | | | | | | | | | the bash scripts and makefiles for building go didn't take into account the fact $GOROOT / $GOBIN could both be directories containing whitespaces, and was not possible to build it in such a situation. this commit adjusts the various makefiles/scripts to make it aware of that possibility, and now it builds successfully when using a path with whitespaces as well. Fixes issue 115. R=rsc, dsymonds1 http://codereview.appspot.com/157067 Committer: Russ Cox <rsc@golang.org>
* tweak documentation of commandsRuss Cox2009-11-091-1/+1
| | | | | | | | | so that first sentence is better for cmd page. live at http://r45:3456/cmd/ R=gri, r http://go/go-review/1024034
* stylistic issues in a couple of cmd docsRob Pike2009-11-041-1/+1
| | | | | R=rsc http://go/go-review/1017028
* more command documentation, including nm and profRob Pike2009-11-031-0/+18
| | | | | R=rsc http://go/go-review/1017022
* clean moreRuss Cox2009-10-031-1/+1
| | | | | | | R=r DELTA=40 (9 added, 3 deleted, 28 changed) OCL=35277 CL=35305
* add -S flag to print size of symbolRuss Cox2009-09-081-13/+28
| | | | | | | R=r DELTA=24 (15 added, 0 deleted, 9 changed) OCL=34447 CL=34458
* rename libmach_amd64 libmachRob Pike2009-08-142-14/+14
| | | | | | R=rsc OCL=33273 CL=33276
* change gotype in symbol table fromRuss Cox2009-08-121-2/+2
| | | | | | | | | | character string to machine address. not filled in, just carved out. R=austin DELTA=77 (11 added, 34 deleted, 32 changed) OCL=33122 CL=33124
* Support use of $GOBINDIR to override $HOME/binPhil Pennock2009-07-281-1/+1
| | | | | | | | R=r,gri,rsc APPROVED=rsc DELTA=53 (12 added, 6 deleted, 35 changed) OCL=31822 CL=32282
* fix gotest by fixing nm -s to print in file order by storing a sequence numberRob Pike2009-04-151-3/+4
| | | | | | | | | as the .6 file is read. now tests will be run in file order. R=rsc DELTA=9 (6 added, 1 deleted, 2 changed) OCL=27542 CL=27544
* symbol table changesRuss Cox2008-11-201-3/+8
| | | | | | | | | | | | | | | | | | * add gotype string to symbol table * fill in gotype in 6l for known funcs/vars * print gotype with nm -t * load symbol and pc/ln tables into memory at magic address 0x99<<32. * add sys.symdat() to retrieve raw bytes of symbol table and pc/ln table. most of this should be considered experimental and subject to change. R=r DELTA=157 (128 added, 0 deleted, 29 changed) OCL=19746 CL=19750
* add nmRuss Cox2008-08-032-0/+368
R=r DELTA=339 (339 added, 0 deleted, 0 changed) OCL=13786 CL=13794