From 86920ad81d50e920a099ec2d75ee719ae3f145ff Mon Sep 17 00:00:00 2001
From: Russ Cox Go is an open source project, distributed under a
BSD-style license.
@@ -17,146 +17,6 @@ compiler using the GCC back end, see
Setting up and using gccgo.
-The Go compilation environment can be customized by five environment variables.
-None are required by the build, but you may wish to set them
-to override the defaults.
-
- Choices for
-
-Note that
-If you choose to override the defaults,
-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
@@ -176,17 +36,16 @@ architectures.
Introduction
+Introduction
Environment variables
-
-
-
-
-$GOROOT
-$HOME/go
.
- This defaults to the parent of the directory where all.bash
is run.
- Although this variable is optional, the examples and typescripts below
- use it as shorthand for the location where you installed Go.
- If you choose not to set $GOROOT
, you must
- run gomake
instead of make
or gmake
- when developing Go programs using the conventional makefiles.
-$GOROOT_FINAL
-$GOROOT
is not set.
- It defaults to the value used for $GOROOT
.
- If you want to build the Go tree in one location
- but move it elsewhere after the build, set
- $GOROOT_FINAL
to the eventual location.
-$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
-$HOME/bin
.
- After installing, you will want to arrange to add this
- directory to your $PATH
, so you can use the tools.
-$GOARM
(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.
-By architecture, we mean the kind of binaries
-that the target environment can run:
-an x86-64 system running a 32-bit-only operating system
-must set GOARCH
to 386
,
-not amd64
.
-$HOME/.bashrc
,
-$HOME/.profile
, or equivalent). The settings might look
-something like this:
-
-export GOROOT=$HOME/go
-export GOARCH=amd64 # optional
-export GOOS=linux # optional
-
-
-
-$ 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
-See the separate gccgo
document
-for details about that compiler and environment.
+The compilers can target the FreeBSD, Linux, Native Client,
+and OS X (a.k.a. Darwin) operating systems.
+(A port to Microsoft Windows is in progress but incomplete.)
+The full set of supported combinations is listed in the discussion of
+environment variables below.
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 +make, awk, and the text editor ed installed.
--$ sudo apt-get install bison gcc libc6-dev ed gawk make -+
On OS X, they can be +installed as part of +Xcode. +
-+
On Linux, use sudo apt-get install bison ed gawk gcc libc6-dev make
(or the equivalent on your Linux distribution).
If you do not have Mercurial installed (you do not have an hg
command),
-this command:
-
-$ sudo easy_install mercurial -- -
works on most systems.
+sudo easy_install mercurial
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@@ -261,16 +117,22 @@ If all goes well, it will finish by printing output like: N known bugs; 0 unexpected bugs --- -Installed Go for darwin/amd64 in /Users/you/go; the compiler is 6g. +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 -and the details on the last line will reflect the operating system, +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
@@ -338,8 +200,8 @@ 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
@@ -347,20 +209,20 @@ gives more detail about
the process of building and testing Go programs.
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-