summaryrefslogtreecommitdiff
path: root/src/cmd
AgeCommit message (Collapse)AuthorFilesLines
2010-02-16gc: disallow NUL byte, catch more invalid UTF-8, testRuss Cox2-31/+31
R=ken2, ken3 CC=golang-dev http://codereview.appspot.com/209041
2010-02-16godoc: updated documentationRobert Griesemer2-8/+24
R=r CC=golang-dev http://codereview.appspot.com/207112
2010-02-16godoc: initialize vars depending on flags after parsing the flags.Robert Griesemer2-1/+4
R=rsc CC=golang-dev http://codereview.appspot.com/206109
2010-02-16godoc: fix initialization issueRobert Griesemer2-2/+1
R=rsc CC=golang-dev http://codereview.appspot.com/207111
2010-02-16cc: use "cpp" anywhere in path, not "/bin/cpp"Giles Lean1-1/+1
R=rsc CC=golang-dev http://codereview.appspot.com/206077 Committer: Russ Cox <rsc@golang.org>
2010-02-16godoc support for directories outside $GOROOTRobert Griesemer4-253/+310
Example use: godoc -path=/home/user1:/home/build/foo -http=:6666 will start a local godoc that maps urls starting with /pkg/user1 or /pkg/foo to the respective roots specified in the path. Missing: Handling of overlapping package directories, multiple packages per directory. R=rsc CC=golang-dev http://codereview.appspot.com/206078
2010-02-16gc: test & fix handling of very long string constantsRuss Cox2-12/+33
R=ken2 CC=golang-dev http://codereview.appspot.com/207106
2010-02-12update gofmt test scriptRobert Griesemer1-4/+9
R=adg CC=golang-dev http://codereview.appspot.com/207088
2010-02-12gc: diagnose invalid array boundsRuss Cox3-23/+23
Fixes issue 587. R=ken2 CC=golang-dev http://codereview.appspot.com/207085
2010-02-11correct meaning of "absolute" and "relative"Robert Griesemer1-15/+15
(implementation was swapped) R=adg CC=golang-dev, rsc http://codereview.appspot.com/207069
2010-02-11Steps towards more flexible godoc:Robert Griesemer1-0/+176
The Mapping object implements a flexible mapping of relative to absolute paths and vice versa. R=rsc CC=golang-dev http://codereview.appspot.com/206067
2010-02-10stop the 5c optimizer from clobbering extern static registers.Kai Backman1-2/+6
R=rsc, ken2 CC=golang-dev http://codereview.appspot.com/204064
2010-02-10arm: fix build on androidRuss Cox6-257/+552
R=kaib CC=golang-dev http://codereview.appspot.com/206059
2010-02-108l: pe executable building code changed to include import table for ↵Alex Brainman2-0/+99
kernel32.dll functions Fixes issue 586. R=rsc CC=golang-dev http://codereview.appspot.com/203060 Committer: Russ Cox <rsc@golang.org>
2010-02-10gc: fix mkopnames and color grep interactionRuss Cox1-0/+4
Fixes issue 406. R=adg CC=golang-dev http://codereview.appspot.com/207053
2010-02-10ld: unused variableRuss Cox1-1/+0
R=adg CC=golang-dev http://codereview.appspot.com/207050
2010-02-09bug fix in 6c/8c/5c mis-alignedKen Thompson1-16/+17
function arguments. R=rsc CC=golang-dev http://codereview.appspot.com/206054
2010-02-098a/8l: Added CMOVcc instructionsEvan Shaw3-0/+100
R=rsc CC=golang-dev http://codereview.appspot.com/204067 Committer: Russ Cox <rsc@golang.org>
2010-02-09make units compileFazlul Shahriar1-1/+1
R=golang-dev, rsc CC=golang-dev http://codereview.appspot.com/206044 Committer: Russ Cox <rsc@golang.org>
2010-02-08gc: fix method expression bugRuss Cox1-0/+1
R=ken2 CC=golang-dev http://codereview.appspot.com/206043
2010-02-08*l/*c: add -V flag to display version numberAndrew Gerrand8-0/+21
R=rsc CC=golang-dev http://codereview.appspot.com/204044
2010-02-05bug in const float divideKen Thompson1-2/+15
R=rsc CC=golang-dev http://codereview.appspot.com/204042
2010-02-06Ugly hack to provide some mechanism for printing documentation aboutRob Pike2-2/+38
Go source outside $GOROOT. If the argument is a path starting with / or ., disregard $GOROOT. Also, disable the check for package name matching the directory, which is counterproductive in this case. Apologies for the violence to the code but we need some help documenting Go code outside the standard repository. R=gri CC=golang-dev http://codereview.appspot.com/201064 Committer: Rob Pike <r@golang.org>
2010-02-055a/6a/8a/5c/6c/8c: remove fixed-size arrays for -I and -D optionsDean Prichard9-32/+41
R=rsc CC=golang-dev http://codereview.appspot.com/198044 Committer: Russ Cox <rsc@golang.org>
2010-02-046l: move mapped symbol table lower in memoryAndrew Gerrand3-2/+5
Allows binary to run on some Linux system. Fix for issue 365. R=rsc CC=golang-dev http://codereview.appspot.com/199096
2010-02-03search for runtime.a in the package path instead of hardcodingKai Backman4-22/+33
the location. remove last remnants of broken -l flag. R=rsc CC=golang-dev http://codereview.appspot.com/201042
2010-02-03ld: include main and runtime in the library loopRuss Cox5-17/+36
Fixes issue 585. R=r CC=golang-dev http://codereview.appspot.com/195075
2010-02-02bug252: make ... vs ...T crossing an error, at least for nowRuss Cox1-0/+5
R=r CC=golang-dev http://codereview.appspot.com/199066
2010-02-01gc: bug250, bug251 - recursive interface typesRuss Cox2-35/+70
Fixes issue 287. R=ken2 CC=golang-dev http://codereview.appspot.com/199057
2010-02-01gc: bug246Russ Cox4-2/+17
R=ken2 CC=golang-dev http://codereview.appspot.com/198057
2010-02-01gc: bug242Russ Cox4-47/+60
R=ken2 CC=golang-dev http://codereview.appspot.com/198053
2010-02-01gc: final ...T bug for the dayRuss Cox3-1/+4
R=ken2 CC=golang-dev http://codereview.appspot.com/199046
2010-02-01don't report a couple of meaningless errors in command-line modeRobert Griesemer2-7/+8
R=rsc CC=golang-dev http://codereview.appspot.com/199045
2010-02-02Change type of Printf's args to ... interface{}Rob Pike2-3/+3
R=rsc CC=golang-dev http://codereview.appspot.com/197043
2010-02-01nacl: fix build, finally fixed 8l convergence bugRuss Cox3-5/+11
R=r CC=golang-dev http://codereview.appspot.com/199042
2010-02-01gc: ... T corner casesRuss Cox5-4/+19
more to come, but should suffice for Printf work. R=ken2 CC=golang-dev http://codereview.appspot.com/197044
2010-02-01gc: add ... T, rework plain ...Russ Cox12-81/+164
No longer a distinct type; now a property of func types. R=ken2 CC=golang-dev http://codereview.appspot.com/197042
2010-02-01Fix redirection if the page is in a subdirectory.Rob Pike1-0/+3
Fixes buggy links in the devel subdirectory. Code from rsc; tested by me. R=rsc, gri CC=golang-dev http://codereview.appspot.com/197041
2010-01-28two minor build fixesRuss Cox1-7/+7
Fixes issue 572. Fixes issue 570. R=r CC=golang-dev http://codereview.appspot.com/194134
2010-01-28avoid overflow of symb buffer in 5a/6a/8a/5c/6c/8cDean Prichard10-8/+56
R=rsc CC=golang-dev http://codereview.appspot.com/194099 Committer: Russ Cox <rsc@golang.org>
2010-01-28gc: tweak error messages, avoid internalization settings in bisonRuss Cox3-18/+22
R=r CC=golang-dev http://codereview.appspot.com/194129
2010-01-27change print print buffer sizeKen Thompson7-19/+19
to go with the full path names R=rsc CC=golang-dev http://codereview.appspot.com/195079
2010-01-27gc: implement defer print/println/panic/paniclnRuss Cox3-66/+154
Fixes issue 219. R=ken2, r CC=golang-dev http://codereview.appspot.com/194097
2010-01-27More steps towards tracking of identifier scopes.Robert Griesemer6-12/+13
- provide scope to parse functions; if non-nil, parser uses the scope to declare and lookup identifiers - resolve forward references where possible R=rsc CC=golang-dev http://codereview.appspot.com/194098
2010-01-26gc: improved syntax errorsRuss Cox6-12/+309
* example-based syntax errors (go.errors) * enable bison's more specific errors and translate grammar token names into tokens like ++ * test cases R=ken2, r, ken3 CC=golang-dev http://codereview.appspot.com/194085
2010-01-26cgo: update for package global name spaceRuss Cox1-5/+5
Fixes issue 560. R=r CC=golang-dev http://codereview.appspot.com/195051
2010-01-26gc: do not treat .6 different from .a anymoreRuss Cox1-13/+8
R=ken2 CC=golang-dev http://codereview.appspot.com/195050
2010-01-26gotest still assumes that gopack is in your PATHIcarus Sparry1-1/+1
If your $PATH does not include $GOBIN then the build fails at the first *.a file, which is probably when running the tests for tar R=rsc CC=golang-dev http://codereview.appspot.com/193066 Committer: Russ Cox <rsc@golang.org>
2010-01-26Allow func() func().Robert Griesemer1-1/+1
Update gofmt test script. R=rsc CC=golang-dev http://codereview.appspot.com/195044
2010-01-26gc: fix chan <- chan precedence.Russ Cox3-46/+47
also allow func() func(). R=ken2 CC=golang-dev http://codereview.appspot.com/194078