@@ -27,15 +27,31 @@ import (
27
27
28
28
// A Context specifies the supporting context for a build.
29
29
type Context struct {
30
- GOARCH string // target architecture
31
- GOOS string // target operating system
32
- GOROOT string // Go root
33
- GOPATH string // Go path
34
- CgoEnabled bool // whether cgo can be used
35
- BuildTags []string // additional tags to recognize in +build lines
36
- InstallTag string // package install directory suffix
37
- UseAllFiles bool // use files regardless of +build lines, file names
38
- Compiler string // compiler to assume when computing target paths
30
+ GOARCH string // target architecture
31
+ GOOS string // target operating system
32
+ GOROOT string // Go root
33
+ GOPATH string // Go path
34
+ CgoEnabled bool // whether cgo can be used
35
+ UseAllFiles bool // use files regardless of +build lines, file names
36
+ Compiler string // compiler to assume when computing target paths
37
+
38
+ // The build and release tags specify build constraints
39
+ // that should be considered satisfied when processing +build lines.
40
+ // Clients creating a new context may customize BuildTags, which
41
+ // defaults to empty, but it is usually an error to customize ReleaseTags,
42
+ // which defaults to the list of Go releases the current release is compatible with.
43
+ // In addition to the BuildTags and ReleaseTags, build constraints
44
+ // consider the values of GOARCH and GOOS as satisfied tags.
45
+ BuildTags []string
46
+ ReleaseTags []string
47
+
48
+ // The install suffix specifies a suffix to use in the name of the installation
49
+ // directory. By default it is empty, but custom builds that need to keep
50
+ // their outputs separate can set InstallSuffix to do so. For example, when
51
+ // using the race detector, the go command uses InstallSuffix = "race", so
52
+ // that on a Linux/386 system, packages are written to a directory named
53
+ // "linux_386_race" instead of the usual "linux_386".
54
+ InstallSuffix string
39
55
40
56
// By default, Import uses the operating system's file system calls
41
57
// to read directories and files. To read from other sources,
@@ -267,6 +283,17 @@ func defaultContext() Context {
267
283
c .GOPATH = envOr ("GOPATH" , "" )
268
284
c .Compiler = runtime .Compiler
269
285
286
+ // Each major Go release in the Go 1.x series should add a tag here.
287
+ // Old tags should not be removed. That is, the go1.x tag is present
288
+ // in all releases >= Go 1.x. Code that requires Go 1.x or later should
289
+ // say "+build go1.x", and code that should only be built before Go 1.x
290
+ // (perhaps it is the stub to use in that case) should say "+build !go1.x".
291
+ //
292
+ // When we reach Go 1.3 the line will read
293
+ // c.ReleaseTags = []string{"go1.1", "go1.2", "go1.3"}
294
+ // and so on.
295
+ c .ReleaseTags = []string {"go1.1" }
296
+
270
297
switch os .Getenv ("CGO_ENABLED" ) {
271
298
case "1" :
272
299
c .CgoEnabled = true
@@ -397,11 +424,11 @@ func (ctxt *Context) Import(path string, srcDir string, mode ImportMode) (*Packa
397
424
dir , elem := pathpkg .Split (p .ImportPath )
398
425
pkga = "pkg/gccgo/" + dir + "lib" + elem + ".a"
399
426
case "gc" :
400
- tag := ""
401
- if ctxt .InstallTag != "" {
402
- tag = "_" + ctxt .InstallTag
427
+ suffix := ""
428
+ if ctxt .InstallSuffix != "" {
429
+ suffix = "_" + ctxt .InstallSuffix
403
430
}
404
- pkga = "pkg/" + ctxt .GOOS + "_" + ctxt .GOARCH + tag + "/" + p .ImportPath + ".a"
431
+ pkga = "pkg/" + ctxt .GOOS + "_" + ctxt .GOARCH + suffix + "/" + p .ImportPath + ".a"
405
432
default :
406
433
// Save error for end of function.
407
434
pkgerr = fmt .Errorf ("import %q: unknown compiler %q" , path , ctxt .Compiler )
@@ -970,8 +997,8 @@ func splitQuoted(s string) (r []string, err error) {
970
997
// !cgo (if cgo is disabled)
971
998
// ctxt.Compiler
972
999
// !ctxt.Compiler
973
- // tag (if tag is listed in ctxt.BuildTags)
974
- // !tag (if tag is not listed in ctxt.BuildTags)
1000
+ // tag (if tag is listed in ctxt.BuildTags or ctxt.ReleaseTags )
1001
+ // !tag (if tag is not listed in ctxt.BuildTags or ctxt.ReleaseTags )
975
1002
// a comma-separated list of any of these
976
1003
//
977
1004
func (ctxt * Context ) match (name string ) bool {
@@ -989,10 +1016,10 @@ func (ctxt *Context) match(name string) bool {
989
1016
return len (name ) > 1 && ! ctxt .match (name [1 :])
990
1017
}
991
1018
992
- // Tags must be letters, digits, underscores.
1019
+ // Tags must be letters, digits, underscores or dots .
993
1020
// Unlike in Go identifiers, all digits are fine (e.g., "386").
994
1021
for _ , c := range name {
995
- if ! unicode .IsLetter (c ) && ! unicode .IsDigit (c ) && c != '_' {
1022
+ if ! unicode .IsLetter (c ) && ! unicode .IsDigit (c ) && c != '_' && c != '.' {
996
1023
return false
997
1024
}
998
1025
}
@@ -1011,6 +1038,11 @@ func (ctxt *Context) match(name string) bool {
1011
1038
return true
1012
1039
}
1013
1040
}
1041
+ for _ , tag := range ctxt .ReleaseTags {
1042
+ if tag == name {
1043
+ return true
1044
+ }
1045
+ }
1014
1046
1015
1047
return false
1016
1048
}
0 commit comments