1. 23 Feb, 2015 2 commits
    • Russ Cox's avatar
      [dev.cc] doc/go1.5: mention cmd/go meaning of std change · 271a6502
      Russ Cox authored
      Change-Id: I259e88f019b6818c57caaa1ec236b7c2e2ae1382
      Reviewed-on: https://go-review.googlesource.com/5551Reviewed-by: default avatarRob Pike <r@golang.org>
      271a6502
    • Russ Cox's avatar
      [dev.cc] cmd/go: fix expansion of 'std', add 'cmd' · 096b294f
      Russ Cox authored
      The wildcard 'std' is defined in documentation to be all the packages
      in the Go standard library. It has also historically matched commands
      in the main repo, but as we implement core commands in Go, that
      becomes problematic. We need a wildcard that means just the library,
      and since 'std' is already documented to have that definition, make it so.
      
      Add a new wildcard 'cmd' for the commands in the main repo ($GOROOT).
      Commands that want both can say 'std cmd' (or 'cmd std') to get the
      effect of the old 'std'.
      
      Update make.bash etc to say both std and cmd most of the time.
      
      Exception: in race.bash, do not install race-enabled versions of
      the actual commands. This avoids trying to write binaries while
      using them, but more importantly it avoids enabling the race
      detector and its associated memory overhead for the already
      memory-hungry compilers.
      
      Change-Id: I26bb06cb13b636dfbe71a015ee0babeb270a0275
      Reviewed-on: https://go-review.googlesource.com/5550
      Run-TryBot: Russ Cox <rsc@golang.org>
      Reviewed-by: default avatarRob Pike <r@golang.org>
      096b294f
  2. 21 Feb, 2015 8 commits
  3. 20 Feb, 2015 15 commits
  4. 19 Feb, 2015 15 commits