File: README.source

package info (click to toggle)
golang 2%3A1.1.1-4
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 40,484 kB
  • ctags: 82,280
  • sloc: ansic: 165,236; asm: 14,184; yacc: 5,341; perl: 4,802; sh: 1,958; xml: 968; lisp: 730; python: 264; makefile: 257; awk: 103
file content (33 lines) | stat: -rw-r--r-- 1,435 bytes parent folder | download | duplicates (21)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
The golang package is generated only for i386, amd64, armel, armhf and
kfreebsd-* architectures, because of upstream restrictions.

Quoting from upstream documentation (http://golang.org/doc/install.html):

    The Go compilers support three instruction sets.  There are
    important differences in the quality of the compilers for the
    different architectures.

    amd64 (a.k.a. x86-64); 6g,6l,6c,6a
        The most mature implementation. The compiler has an effective
        optimizer (registerizer) and generates good code (although
        gccgo can do noticeably better sometimes).

    386 (a.k.a. x86 or x86-32); 8g,8l,8c,8a
        Comparable to the amd64 port.

    arm (a.k.a. ARM); 5g,5l,5c,5a
        Incomplete. It only supports Linux binaries, the optimizer is
        incomplete, and floating point uses the VFP unit. However, all
        tests pass. Work on the optimizer is continuing. Tested
        against a Nexus One.

    Except for things like low-level operating system interface code,
    the run-time support is the same in all ports and includes a
    mark-and-sweep garbage collector (a fancier one is in the works),
    efficient array and string slicing, support for segmented stacks,
    and a strong goroutine implementation.

    The compilers can target the FreeBSD, Linux, and OS X
    (a.k.a. Darwin) operating systems.

 -- Ondřej Surý <ondrej@debian.org>, Thu, 28 Apr 2011 11:33:26 +0200