From: Rob Pike
Date: Wed, 25 Nov 2009 00:00:19 +0000 (-0800)
Subject: add freebsd to the list of os'es.
X-Git-Tag: weekly.2009-12-07~130
X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=53ab6a0ad19e76156ec79b4c0c557910dee49005;p=gostls13.git
add freebsd to the list of os'es.
make the GOOS/GOARCH pair a table to avoid the confusion caused when it was of the form linux/386.
R=rsc
CC=golang-dev
https://golang.org/cl/160061
---
diff --git a/doc/install.html b/doc/install.html
index 9547b0e60f..a7fc446db2 100644
--- a/doc/install.html
+++ b/doc/install.html
@@ -37,19 +37,44 @@ plus one optional variable:
The name of the target operating system and compilation architecture.
Choices for $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 are
- linux
/amd64
,
- linux
/arm
,
- linux
/386
,
- darwin
/amd64
,
- darwin
/386
,
- and
- nacl
/386
.
+ 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 |
+
+
+