- 30 Jan, 2012 23 commits
-
-
Brad Fitzpatrick authored
Fix from Russ. Tested that multiple builds in a row work again. R=rsc, rsc CC=golang-dev https://golang.org/cl/5599047
-
Brad Fitzpatrick authored
Makes for prettier docs. R=golang-dev, dsymonds, r, rsc CC=golang-dev https://golang.org/cl/5576056
-
Brad Fitzpatrick authored
Benchmarks look the same. R=golang-dev, dsymonds, rsc CC=golang-dev https://golang.org/cl/5572080
-
Anthony Martin authored
This fixes a regression that was made when adding support for building with gccgo (in d6a14e6fac0c). External commands (those not from the Go tree) were being installed to the package directory instead of the binary directory. R=golang-dev, rsc, adg, remyoudompheng, rsc CC=golang-dev https://golang.org/cl/5564072
-
Russ Cox authored
R=iant, r CC=golang-dev https://golang.org/cl/5576071
-
Russ Cox authored
R=golang-dev, gri CC=golang-dev https://golang.org/cl/5581047
-
Gustavo Niemeyer authored
R=golang-dev, adg CC=golang-dev https://golang.org/cl/5569090
-
Rob Pike authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5598045
-
Russ Cox authored
I assume this was a too aggressive search-and-replace. R=imkrasin CC=golang-dev https://golang.org/cl/5580047
-
Russ Cox authored
R=r CC=golang-dev https://golang.org/cl/5564063
-
Russ Cox authored
Fixes #2478. R=ken2 CC=golang-dev https://golang.org/cl/5593051
-
Rob Pike authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5598046
-
Gustavo Niemeyer authored
This will add the temporary object directory into the lookup path so that cgo-exported function declarations may be included from C files. R=golang-dev, rogpeppe, rsc CC=golang-dev https://golang.org/cl/5600043
-
Olivier Duperray authored
R=golang-dev, gri CC=golang-dev https://golang.org/cl/5595045
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/5580046
-
Volker Dobler authored
R=golang-dev CC=bradfitz, golang-dev https://golang.org/cl/5598044
-
Alex Brainman authored
pjmlp gets credit for initial version. Fixes #1789. R=paulo.jpinto, bradfitz, remyoudompheng, rsc CC=golang-dev https://golang.org/cl/5543069
-
Alex Brainman authored
R=golang-dev, rsc, cw, rsc CC=golang-dev https://golang.org/cl/5576070
-
Brad Fitzpatrick authored
Fixes #2801 R=rsc CC=golang-dev https://golang.org/cl/5576068
-
Andrew Gerrand authored
The one time they recovered from anything they obscured a useful stack trace. We're better off just crashing hard. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5577073
-
Andrew Gerrand authored
This ensures we always have results for subrepo-tip at go-tip. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5569091
-
Andrew Gerrand authored
R=rsc CC=golang-dev https://golang.org/cl/5576047
-
Andrew Gerrand authored
dashboard: add Kind to Package struct dashboard: add kind parameter to /packages handler R=rsc, bsiegert, rogpeppe CC=golang-dev https://golang.org/cl/5572062
-
- 29 Jan, 2012 11 commits
-
-
Gustavo Niemeyer authored
The changes to builder were not tested. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5572083
-
Volker Dobler authored
Cookies recieved in a response to a POST request are stored in the client's jar like they are for GET requests. R=golang-dev, rsc CC=bradfitz, golang-dev https://golang.org/cl/5576065
-
Rob Pike authored
fix, vet yacc is also fixed (it was wrong before) All that's left is the commands used during compilation This looks like a huge CL, but it's almost all file renames. The action is in cmd/go/pkg.go, the Makefiles, and .../doc.go. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5595044
-
Rob Pike authored
If the argument to go fix isn't a package directory, the message said nothing helpful. Now it at least says a package couldn't be found. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5577072
-
Russ Cox authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/5596046
-
Rob Pike authored
cov, nm, pprof, prof R=rsc, r, rsc CC=golang-dev https://golang.org/cl/5576067
-
Shenghou Ma authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5569085
-
Russ Cox authored
If this happens, something is misconfigured. If we don't test for this explicitly, MatchAt ends up calling itself recursively forever. R=golang-dev, r CC=golang-dev https://golang.org/cl/5576066
-
Rob Pike authored
1) create go-tool dir in make.bash 2) clean up stale binaries in make.bash 3) add 'tool' command to go 4) convert goyacc->yacc as a first test tool Since goyacc stands alone, it's a safe trial. R=rsc CC=golang-dev https://golang.org/cl/5576061
-
Mikio Hara authored
R=rsc, r CC=golang-dev https://golang.org/cl/5569087
-
Rémy Oudompheng authored
Fixes #2768. R=golang-dev, lvd, iant CC=golang-dev, remy https://golang.org/cl/5572081
-
- 28 Jan, 2012 1 commit
-
-
Roger Peppe authored
R=rsc, bradfitz CC=golang-dev https://golang.org/cl/5577062
-
- 27 Jan, 2012 5 commits
-
-
Brad Fitzpatrick authored
They're not portable, and pkg os is supposed to be portable. Fixes #2562 R=golang-dev, mikioh.mikioh, r, n13m3y3r, rsc CC=golang-dev https://golang.org/cl/5574078
-
Robert Griesemer authored
Added flag AllMethods: if not set (future default), embedded methods of exported (and thus visible) embedded fields are not shown in the final package documentation The actual change for AllMethods is just in sortedFuncs. All other changes are simplifications of the existing logic (mostly deletion of code): Because method conflicts due to embedding must always be detected, remove any premature elimination of types and methods. Instead collect all named types and all methods and do the filtering at the end. Miscellaneous: - renamed baseType -> namedType - streamline logic for recording embedded types - record embedded types via a map (simpler data structures) AllMethods is set by default; so the output is unchanged and the tests pass. The next CL will enable the AllMethods flag and have adjusted tests (and fix issue 2791). R=rsc CC=golang-dev https://golang.org/cl/5572076
-
Robert Griesemer authored
Don't show conflicting method embedded via a visible and invisible anonymous field. R=rsc CC=golang-dev https://golang.org/cl/5564064
-
Rémy Oudompheng authored
The use of gccgo is triggered by GC=gccgo in environment. It still needs the standard distribution to behave properly, but allows using the test, build, run, install subcommands with gccgo. R=rsc, iant, fullung CC=golang-dev, remy https://golang.org/cl/5562045
-
Russ Cox authored
R=golang-dev, bradfitz, r CC=golang-dev https://golang.org/cl/5586044
-