暂无描述

Andrew Gerrand 3dbc53ae6a go1.3.3 10 年之前
api 98b6410f13 api: add go1.3.txt 10 年之前
doc 59c83485df [release-branch.go1.3] doc: document go1.3.3 10 年之前
include b48cd4b9dc [release-branch.go1.3] include/u.h: define _DEFAULT_SOURCE for new glibc 10 年之前
lib aa92b3e5d4 lib/timezone: update to IANA 2014d 10 年之前
misc 7935b51b8b [release-branch.go1.3] runtime: keep g->syscallsp consistent after cgo->Go callbacks 10 年之前
src 32fb19371b [release-branch.go1.3] cmd/5l, cmd/6l, cmd/8l: fix nacl binary corruption bug 10 年之前
test 3fa4a7849c [release-branch.go1.3] cmd/6g, cmd/8g: fix, test byte-sized magic multiply 10 年之前
.hgignore 174b8c95f5 lib9: enable on Plan 9 10 年之前
.hgtags 1cdd48c8a2 go1.3 10 年之前
AUTHORS 86e2a8edef A+C: Pietro Gagliardi (individual CLA) 10 年之前
CONTRIBUTORS c53111d987 C: add another email of mine. 10 年之前
LICENSE c748689277 doc: update licensing text one more time 12 年之前
PATENTS 4468e5b376 LICENSE: separate, change PATENTS text 14 年之前
README 624f9da386 README: Fix installation instructions 11 年之前
VERSION 3dbc53ae6a go1.3.3 10 年之前
favicon.ico b13c7eec64 godoc: update favicon 12 年之前
robots.txt 06a923ada0 godoc: serve robots.txt raw 13 年之前

README

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-source.html
in your web browser.

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

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.