Find a file
Dmitriy Vyukov 7847f328cd runtime: faster segmented stacks
benchmark                      old ns/op    new ns/op    delta
BenchmarkStackGrowth                 665          548  -17.59%
BenchmarkStackGrowth-2               333          274  -17.72%
BenchmarkStackGrowth-4               224          168  -25.00%
BenchmarkStackGrowth-8               124           91  -26.21%
BenchmarkStackGrowth-16               82           70  -14.55%
BenchmarkStackGrowth-32               73           59  -19.49%

R=nigeltao, minux.ma, rsc
CC=golang-dev
https://golang.org/cl/7026044
2013-01-10 11:36:40 +04:00
api api: add go/types to next.txt 2013-01-02 15:28:30 -05:00
doc doc/contribute: Link to IssueTracker docs for more "special sentences" 2013-01-10 14:17:20 +11:00
include cmd/5l, cmd/6l, cmd/8l, cmd/cc, cmd/gc: new flag parsing 2013-01-06 15:24:47 -05:00
lib
misc misc/emacs: update go-mode syntax table and comment handling as 2013-01-09 10:26:34 -05:00
src runtime: faster segmented stacks 2013-01-10 11:36:40 +04:00
test cmd/gc: add space to export data to match linker expectations 2013-01-09 22:02:53 +01:00
.hgignore
.hgtags
AUTHORS A+C: Jason Travis (individual CLA) 2013-01-08 15:21:09 +11:00
CONTRIBUTORS A+C: Jason Travis (individual CLA) 2013-01-08 15:21:09 +11:00
favicon.ico
LICENSE
PATENTS
README
robots.txt

This is the source code repository for the Go programming language.  

For documentation about how to install and use Go,
visit http://golang.org/ or load doc/install.html in your web browser.

After installing Go, you can view a nicely formatted
doc/install.html by running godoc --http=:6060
and then visiting http://localhost:6060/doc/install.html.

Unless otherwise noted, the Go source files are distributed
under the BSD-style license found in the LICENSE file.

--

Binary Distribution Notes

If you have just untarred a binary Go distribution, you need to set
the environment variable $GOROOT to the full path of the go
directory (the one containing this README).  You can omit the
variable if you unpack it into /usr/local/go, or if you rebuild
from sources by running all.bash (see doc/install.html).
You should also add the Go binary directory $GOROOT/bin
to your shell's path.

For example, if you extracted the tar file into $HOME/go, you might
put the following in your .profile:

    export GOROOT=$HOME/go
    export PATH=$PATH:$GOROOT/bin

See doc/install.html for more details.