summaryrefslogtreecommitdiff
path: root/src/cmd/godefs
AgeCommit message (Collapse)AuthorFilesLines
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý10-0/+1468
2011-09-13Imported Upstream version 60Ondřej Surý10-1468/+0
2011-08-03Imported Upstream version 59upstream/59Ondřej Surý5-0/+151
2011-06-30Imported Upstream version 58upstream/58Ondřej Surý3-12/+13
2011-04-26Imported Upstream version 2011.04.13upstream/2011.04.13Ondřej Surý1-1/+2
2011-02-14Imported Upstream version 2011-02-01.1upstream/2011-02-01.1Ondřej Surý2-34/+49
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý3-17/+20
2010-03-30godefs: fix handling of negative constantsRuss Cox1-2/+8
R=r CC=golang-dev http://codereview.appspot.com/849041
2009-12-13Ported godefs to Windows.Hector Chu2-67/+80
R=rsc http://codereview.appspot.com/164049 Committer: Russ Cox <rsc@golang.org>
2009-11-23go: makes it build for the case $GOROOT has whitespacesSergio Luis O. B. Correia1-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>
2009-11-15godefs: avoid gcc 4'isms in command line.Russ Cox1-2/+2
Fixes issue 97. R=r http://codereview.appspot.com/155054
2009-11-05gofmt'ed godefsRobert Griesemer1-11/+11
R=rsc http://go/go-review/1020001
2009-11-04doc doc docRuss Cox2-1/+100
R=r http://go/go-review/1016039
2009-11-01syscall cleanup.Russ Cox1-1/+3
* rename PORT.sh -> mkall.sh (hopefully more obvious), change behavior: run commands by default. * pull more constants out of #defines automatically, instead of editing large lists by hand. * add Recvfrom, Sendto add os.O_EXCL. R=r http://go/go-review/1017009
2009-10-03clean moreRuss Cox1-1/+1
R=r DELTA=40 (9 added, 3 deleted, 28 changed) OCL=35277 CL=35305
2009-08-24avoid duplicate field names, so that bug132 can be fixedRuss Cox1-0/+9
also fix echo bug that just surfaced in mkerrors.sh R=r DELTA=67 (11 added, 19 deleted, 37 changed) OCL=33743 CL=33757
2009-07-28Support use of $GOBINDIR to override $HOME/binPhil Pennock1-1/+1
R=r,gri,rsc APPROVED=rsc DELTA=53 (12 added, 6 deleted, 35 changed) OCL=31822 CL=32282
2009-06-01make godefs work better for generating Go.Russ Cox3-28/+116
R=r DELTA=121 (92 added, 4 deleted, 25 changed) OCL=29706 CL=29721
2009-05-22Force usage of dollar signs to circumvent arm-gcc balking at them.Kai Backman1-0/+1
R=rsc APPROVED=rsc DELTA=1 (1 added, 0 deleted, 0 changed) OCL=29275 CL=29278
2009-03-31multiple bugs in bitfield handlingRuss Cox1-3/+6
R=r DELTA=6 (3 added, 0 deleted, 3 changed) OCL=26944 CL=26967
2009-03-30new tool godefs.Russ Cox5-0/+1076
uses gcc to determine system header layouts and emits simple C or Go. see comment in main.c. R=r DELTA=1069 (1067 added, 0 deleted, 2 changed) OCL=26682 CL=26880