Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
golang
Commits
b2d3701c
Commit
b2d3701c
authored
Nov 07, 2009
by
Rob Pike
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
8g has an optimizer; update its description
R=rsc CC=go-dev
http://go/go-review/1025010
parent
8910e427
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
install.html
doc/install.html
+6
-5
No files found.
doc/install.html
View file @
b2d3701c
...
...
@@ -33,8 +33,8 @@ plus one optional variable:</p>
Choices for
<code>
$GOOS
</code>
are
<code>
linux
</code>
,
<code>
darwin
</code>
(Mac OS X 10.5 or 10.6),
and
<code>
nacl
</code>
(Native Client, an incomplete port).
Choices for
<code>
$GOARCH
</code>
are
<code>
amd64
</code>
(64-bit x86, the most
stabl
e port),
<code>
386
</code>
(32-bit x86
, an unoptimized but stable port
), and
Choices for
<code>
$GOARCH
</code>
are
<code>
amd64
</code>
(64-bit x86, the most
matur
e port),
<code>
386
</code>
(32-bit x86), and
<code>
arm
</code>
(32-bit ARM, an incomplete port).
The valid combinations are
<code>
linux
</code>
/
<code>
amd64
</code>
,
...
...
@@ -91,7 +91,7 @@ architectures.
<code>
amd64
</code>
(a.k.a.
<code>
x86-64
</code>
);
<code>
6g,6l,6c,6a
</code>
</dt>
<dd>
The
strongest
implementation. The compiler has an effective optimizer
The
most mature
implementation. The compiler has an effective optimizer
(registerizer) and generates good code (although
<code>
gccgo
</code>
can do noticeably better sometimes).
</dd>
...
...
@@ -99,8 +99,9 @@ architectures.
<code>
386
</code>
(a.k.a.
<code>
x86
</code>
or
<code>
x86-32
</code>
);
<code>
8g,8l,8c,8a
</code>
</dt>
<dd>
Comparable to the
<code>
amd64
</code>
port, but there is no
optimizer. Work is underway.
Comparable to the
<code>
amd64
</code>
port. Not as well soaked but
should be nearly as solid.
</dd>
<dt>
<code>
arm
</code>
(a.k.a.
<code>
ARM
</code>
);
<code>
5g,5l,5c,5a
</code>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment