Commit 9c13eb37 authored by Joe Tsai's avatar Joe Tsai Committed by Joe Tsai

go/build: introduce go1.8 build tag

Change-Id: Ib8855f8125970fc7ffb271635c28d31d310fcb5b
Reviewed-on: https://go-review.googlesource.com/27192
Run-TryBot: Joe Tsai <thebrokentoaster@gmail.com>
Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
parent 1a7fc7b3
...@@ -270,7 +270,7 @@ func defaultContext() Context { ...@@ -270,7 +270,7 @@ func defaultContext() Context {
// in all releases >= Go 1.x. Code that requires Go 1.x or later should // 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 // 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". // (perhaps it is the stub to use in that case) should say "+build !go1.x".
c.ReleaseTags = []string{"go1.1", "go1.2", "go1.3", "go1.4", "go1.5", "go1.6", "go1.7"} c.ReleaseTags = []string{"go1.1", "go1.2", "go1.3", "go1.4", "go1.5", "go1.6", "go1.7", "go1.8"}
switch os.Getenv("CGO_ENABLED") { switch os.Getenv("CGO_ENABLED") {
case "1": case "1":
......
...@@ -104,6 +104,7 @@ ...@@ -104,6 +104,7 @@
// - "go1.5", from Go version 1.5 onward // - "go1.5", from Go version 1.5 onward
// - "go1.6", from Go version 1.6 onward // - "go1.6", from Go version 1.6 onward
// - "go1.7", from Go version 1.7 onward // - "go1.7", from Go version 1.7 onward
// - "go1.8", from Go version 1.8 onward
// - any additional words listed in ctxt.BuildTags // - any additional words listed in ctxt.BuildTags
// //
// If a file's name, after stripping the extension and a possible _test suffix, // If a file's name, after stripping the extension and a possible _test suffix,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment