Skip to content

Commit

Permalink
go/build: introduce go1.5 build tag
Browse files Browse the repository at this point in the history
Change-Id: Iab2f8e1c4443f39b79c1c63a7a30062074b48764
Signed-off-by: Shenghou Ma <[email protected]>
Reviewed-on: https://go-review.googlesource.com/10042
Reviewed-by: Brad Fitzpatrick <[email protected]>
  • Loading branch information
minux committed May 14, 2015
1 parent 30aacd4 commit 1e7f579
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
6 changes: 1 addition & 5 deletions src/go/build/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -296,11 +296,7 @@ func defaultContext() Context {
// in all releases >= Go 1.x. Code that requires Go 1.x or later should
// say "+build go1.x", and code that should only be built before Go 1.x
// (perhaps it is the stub to use in that case) should say "+build !go1.x".
//
// When we reach Go 1.5 the line will read
// c.ReleaseTags = []string{"go1.1", "go1.2", "go1.3", "go1.4", "go1.5"}
// and so on.
c.ReleaseTags = []string{"go1.1", "go1.2", "go1.3", "go1.4"}
c.ReleaseTags = []string{"go1.1", "go1.2", "go1.3", "go1.4", "go1.5"}

switch os.Getenv("CGO_ENABLED") {
case "1":
Expand Down
1 change: 1 addition & 0 deletions src/go/build/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@
// - "go1.2", from Go version 1.2 onward
// - "go1.3", from Go version 1.3 onward
// - "go1.4", from Go version 1.4 onward
// - "go1.5", from Go version 1.5 onward
// - any additional words listed in ctxt.BuildTags
//
// If a file's name, after stripping the extension and a possible _test suffix,
Expand Down

0 comments on commit 1e7f579

Please sign in to comment.