From 3e45412327a2654a77944249962b3652e6142299 Mon Sep 17 00:00:00 2001
From: Ondřej Surý Go is an open source project, distributed under a
BSD-style license.
@@ -8,6 +8,8 @@ This document explains how to check out the sources,
build them on your own machine, and run them.
There are two distinct ways to experiment with Go.
This document focuses on the
-The Go compilation environment depends on three environment variables plus one optional variable:
-
-
-
-Note that
-Set these variables in your shell profile (
-Double-check them by listing your environment. (You will need to launch
-a new shell or terminal window for the changes to take effect.)
-
The Go compilers support three instruction sets.
There are important differences in the quality of the compilers for the different
@@ -147,17 +38,19 @@ architectures.
-See the separate The Go tool chain is written in C. To build it, you need
-to have GCC, the standard C libraries, the parser generator Bison,
-make, awk, and the text editor ed installed. On OS X, they can be
-installed as part of
-Xcode. On Linux, use
+ The Go tool chain is written in C.
+To build it, you need these programs installed:
+Introduction
+Introduction
gc
Go
@@ -17,117 +19,6 @@ compiler using the GCC back end, see
Setting up and using gccgo.
Environment variables
-
-
-
-
-$GOROOT
-$HOME/go
- but it can be any directory.
-$GOOS
and $GOARCH
-$GOOS
are linux
,
- freebsd
,
- darwin
(Mac OS X 10.5 or 10.6),
- and nacl
(Native Client, an incomplete port).
- Choices for $GOARCH
are amd64
(64-bit x86, the most mature port),
- 386
(32-bit x86), and
- arm
(32-bit ARM, an incomplete port).
- The valid combinations of $GOOS
and $GOARCH
are:
-
-
-
-
- $GOOS
- $GOARCH
-
- darwin
- 386
-
- darwin
- amd64
-
- freebsd
- 386
-
- freebsd
- amd64
-
- linux
- 386
-
- linux
- amd64
-
- linux
- arm
-
- nacl
- 386
$GOBIN
(optional)
-$HOME/bin
.
- After installing, you will want to arrange to add this
- directory to your $PATH
, so you can use the tools.
-$GOARM
(optional, arm, default=6)
-$GOARM
to 5 will compile the runtime libraries using
- just SWP instructions that work on older architectures as well.
- Running v6 code on an older core will cause an illegal instruction trap.
-$GOARCH
and $GOOS
identify the
-target environment, not the environment you are running on.
-In effect, you are always cross-compiling.
-$HOME/.bashrc
,
-$HOME/.profile
, or equivalent). The settings might look
-something like this:
-
-export GOROOT=$HOME/go
-export GOARCH=amd64
-export GOOS=linux
-
-
-
-$ env | grep '^GO'
-
-
-Ports
-
386
(a.k.a. x86
or x86-32
); 8g,8l,8c,8a
amd64
port. Not as well soaked but
- should be nearly as solid.
-
+ Comparable to the amd64
port.
arm
(a.k.a. ARM
); 5g,5l,5c,5a
gccgo
document
-for details about that compiler and environment.
+The compilers can target the FreeBSD, Linux,
+and OS X (a.k.a. Darwin) operating systems.
+(A port to Microsoft Windows is in progress but incomplete. See the
+Windows Port
+page for details.)
+The full set of supported combinations is listed in the discussion of
+environment variables below.
Install C tools, if needed
+Install C tools, if needed
+
+
+
-$ sudo apt-get install bison gcc libc6-dev ed gawk make -+
On OS X, they can be +installed as part of +Xcode. +
--(or the equivalent on your Linux distribution). +
On Ubuntu/Debian, use sudo apt-get install bison ed gawk gcc libc6-dev make
.
-If you do not have Mercurial installed (you do not have an hg
command),
-this command:
+To perform the next step you must have Mercurial installed. (Check that you have an hg
command.) This suffices to install Mercurial on most systems:
-$ sudo easy_install mercurial +sudo easy_install mercurial+(On Ubuntu/Debian, you might try
apt-get install python-setuptools
+python-dev build-essential
first. The Mercurial in your distribution's
+package repository will most likely be old and broken.)
+
++If that fails, try installing manually from the Mercurial Download page.
+ -works on most systems.
-(On Ubuntu/Debian, you might try apt-get install python-setuptools python-dev build-essential gcc
first.)
-If that fails, visit the Mercurial Download page.
Make sure the $GOROOT
directory does not exist or is empty.
+
+
Go will install to a directory named go
.
+Change to the directory that will be its parent
+and make sure the go
directory does not exist.
Then check out the repository:
-$ hg clone -r release https://go.googlecode.com/hg/ $GOROOT +$ hg clone -r release https://go.googlecode.com/hg/ go-
To build the Go distribution, run
-$ cd $GOROOT/src +$ cd go/src $ ./all.bash
-If all goes well, it will finish by printing +If all goes well, it will finish by printing output like:
--- cd ../test N known bugs; 0 unexpected bugs + +--- +Installed Go for linux/amd64 in /home/you/go. +Installed commands in /home/you/go/bin. +*** You need to add /home/you/go/bin to your $PATH. *** +The compiler is 6g.
-where N is a number that varies from release to release. +where N is a number that varies from release to release +and the details on the last few lines will reflect the operating system, +architecture, and root directory used during the install.
-For more information about ways to control the build, +see the discussion of environment variables below.
+
Given a file file.go
, compile it using
@@ -299,34 +224,57 @@ command line.
The linker learns about them by reading hello.6
.
To build more complicated programs, you will probably
want to use a
Makefile
.
There are examples in places like
-$GOROOT/src/cmd/godoc/Makefile
-and $GOROOT/src/pkg/*/Makefile
.
+go/src/cmd/godoc/Makefile
+and go/src/pkg/*/Makefile
.
The
document
about contributing to the Go project
gives more detail about
the process of building and testing Go programs.
+Start by reading the Go Tutorial. +
+ ++Build a web application by following the Wiki +Codelab. +
+ ++Read Effective Go to learn about writing +idiomatic Go code. +
+ ++For the full story, consult Go's extensive +documentation. +
+ +New releases are announced on the Go Nuts mailing list. To update an existing tree to the latest release, you can run:
-$ cd $GOROOT/src +$ cd go/src $ hg pull $ hg update release $ ./all.bash-