~ubuntu-branches/ubuntu/vivid/golang/vivid

« back to all changes in this revision

Viewing changes to src/cmd/gc/doc.go

  • Committer: Package Import Robot
  • Author(s): Serge Hallyn
  • Date: 2014-11-18 15:12:26 UTC
  • mfrom: (14.2.12 vivid-proposed)
  • Revision ID: package-import@ubuntu.com-20141118151226-zug7vn93mn3dtiz3
Tags: 2:1.3.2-1ubuntu1
* Merge from Debian unstable.  Remaining changes:
  - 016-armhf-elf-header.patch: Use correct ELF header for armhf binaries.
  - Support co-installability with gccgo-go tool:
    - d/rules,golang-go.install: Rename bin/go -> bin/golang-go
    - d/golang-go.{postinst,prerm}: Install/remove /usr/bin/go using
      alternatives.
  - d/copyright: Amendments for full compiliance with copyright format.
  - d/control: Demote golang-go.tools to Suggests to support Ubuntu MIR.
  - dropped patches (now upstream):
    - d/p/issue27650045_40001_50001.diff
    - d/p/issue28050043_60001_70001.diff
    - d/p/issue54790044_100001_110001.diff

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
Flags:
38
38
        -o file
39
39
                output file, default file.6 for 6g, etc.
 
40
        -pack
 
41
                write an archive file rather than an object file
40
42
        -e
41
43
                normally the compiler quits after 10 errors; -e prints all errors
42
44
        -p path
50
52
                add dir1 and dir2 to the list of paths to check for imported packages
51
53
        -N
52
54
                disable optimizations
 
55
        -nolocalimports
 
56
                disallow local (relative) imports
53
57
        -S
54
58
                write assembly language text to standard output (code only)
55
59
        -S -S
56
60
                write assembly language text to standard output (code and data)
57
61
        -u
58
 
                disallow importing packages not marked as safe
 
62
                disallow importing packages not marked as safe; implies -nolocalimports
59
63
        -V
60
64
                print the compiler version
61
65
        -race