Skip to content

Commit e778f93

Browse files
committedMar 13, 2013
cmd/go: add go1.1 build tag, add -installsuffix flag
The new build tag "go1.1" will be satisfied by any Go 1.z release >= 1.1. In general, the build tag "go1.x" will be satisfied by any Go 1.z release >= 1.x. What happens when we reach Go 2 is yet to be decided. The tags "go1" or "go1.0" are missing, because +build tags did not exist before then, and also because the Go 1.0 releases do not recognize them. The new -installsuffix flag gives access to the build context's InstallSuffix (formerly named InstallTag, but not part of Go 1.0), for use in isolating builds to custom directories. For example -race implies -installsuffix race, and an AppEngine-specific build might use -tags appengine -installsuffix appengine. Fixes #4116. Fixes #4443. R=golang-dev, bradfitz, r CC=golang-dev https://golang.org/cl/7794043
1 parent 3048a4c commit e778f93

File tree

6 files changed

+105
-40
lines changed

6 files changed

+105
-40
lines changed
 

‎src/cmd/dist/build.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1046,7 +1046,7 @@ install(char *dir)
10461046
static bool
10471047
matchfield(char *f)
10481048
{
1049-
return streq(f, goos) || streq(f, goarch) || streq(f, "cmd_go_bootstrap");
1049+
return streq(f, goos) || streq(f, goarch) || streq(f, "cmd_go_bootstrap") || streq(f, "go1.1");
10501050
}
10511051

10521052
// shouldbuild reports whether we should build this file.

‎src/cmd/go/build.go

+25-12
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,13 @@ build writes the resulting executable to output.
4040
Otherwise build compiles the packages but discards the results,
4141
serving only as a check that the packages can be built.
4242
43-
The -o flag specifies the output file name. If not specified, the
44-
name is packagename.a (for a non-main package) or the base
45-
name of the first source file (for a main package).
43+
The -o flag specifies the output file name. If not specified, the
44+
output file name depends on the arguments and derives from the name
45+
of the package, such as p.a for package p, unless p is 'main'. If
46+
the package is main and file names are provided, the file name
47+
derives from the first file name mentioned, such as f1 for 'go build
48+
f1.go f2.go'; with no files provided ('go build'), the output file
49+
name is the base name of the containing directory.
4650
4751
The build flags are shared by the build, install, run, and test commands:
4852
@@ -53,27 +57,32 @@ The build flags are shared by the build, install, run, and test commands:
5357
-p n
5458
the number of builds that can be run in parallel.
5559
The default is the number of CPUs available.
60+
-race
61+
enable data race detection.
62+
Supported only on linux/amd64, darwin/amd64 and windows/amd64.
5663
-v
5764
print the names of packages as they are compiled.
5865
-work
5966
print the name of the temporary work directory and
6067
do not delete it when exiting.
6168
-x
6269
print the commands.
63-
-race
64-
enable data race detection.
65-
Supported only on linux/amd64, darwin/amd64 and windows/amd64.
6670
6771
-ccflags 'arg list'
68-
arguments to pass on each 5c, 6c, or 8c compiler invocation
72+
arguments to pass on each 5c, 6c, or 8c compiler invocation.
6973
-compiler name
70-
name of compiler to use, as in runtime.Compiler (gccgo or gc)
74+
name of compiler to use, as in runtime.Compiler (gccgo or gc).
7175
-gccgoflags 'arg list'
72-
arguments to pass on each gccgo compiler/linker invocation
76+
arguments to pass on each gccgo compiler/linker invocation.
7377
-gcflags 'arg list'
74-
arguments to pass on each 5g, 6g, or 8g compiler invocation
78+
arguments to pass on each 5g, 6g, or 8g compiler invocation.
79+
-installsuffix suffix
80+
a suffix to use in the name of the package installation directory,
81+
in order to keep output separate from default builds.
82+
If using the -race flag, the install suffix is automatically set to race
83+
or, if set explicitly, has _race appended to it.
7584
-ldflags 'flag list'
76-
arguments to pass on each 5l, 6l, or 8l linker invocation
85+
arguments to pass on each 5l, 6l, or 8l linker invocation.
7786
-tags 'tag list'
7887
a list of build tags to consider satisfied during the build.
7988
See the documentation for the go/build package for
@@ -153,6 +162,7 @@ func addBuildFlags(cmd *Command) {
153162
cmd.Flag.BoolVar(&buildA, "a", false, "")
154163
cmd.Flag.BoolVar(&buildN, "n", false, "")
155164
cmd.Flag.IntVar(&buildP, "p", buildP, "")
165+
cmd.Flag.StringVar(&buildContext.InstallSuffix, "installsuffix", "", "")
156166
cmd.Flag.BoolVar(&buildV, "v", false, "")
157167
cmd.Flag.BoolVar(&buildX, "x", false, "")
158168
cmd.Flag.BoolVar(&buildWork, "work", false, "")
@@ -2084,6 +2094,9 @@ func raceInit() {
20842094
buildGcflags = append(buildGcflags, "-race")
20852095
buildLdflags = append(buildLdflags, "-race")
20862096
buildCcflags = append(buildCcflags, "-D", "RACE")
2087-
buildContext.InstallTag = "race"
2097+
if buildContext.InstallSuffix != "" {
2098+
buildContext.InstallSuffix += "_"
2099+
}
2100+
buildContext.InstallSuffix += "race"
20882101
buildContext.BuildTags = append(buildContext.BuildTags, "race")
20892102
}

‎src/cmd/go/doc.go

+16-10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
// DO NOT EDIT THIS FILE. GENERATED BY mkdoc.sh.
6+
// Edit the documentation in other files and rerun mkdoc.sh to generate this one.
7+
58
/*
69
Go is a tool for managing Go source code.
710
@@ -70,32 +73,35 @@ The build flags are shared by the build, install, run, and test commands:
7073
force rebuilding of packages that are already up-to-date.
7174
-n
7275
print the commands but do not run them.
73-
-o file
74-
specify output file name; see description above.
7576
-p n
7677
the number of builds that can be run in parallel.
7778
The default is the number of CPUs available.
79+
-race
80+
enable data race detection.
81+
Supported only on linux/amd64, darwin/amd64 and windows/amd64.
7882
-v
7983
print the names of packages as they are compiled.
8084
-work
8185
print the name of the temporary work directory and
8286
do not delete it when exiting.
8387
-x
8488
print the commands.
85-
-race
86-
enable data race detection.
87-
Supported only on linux/amd64, darwin/amd64 and windows/amd64.
8889
8990
-ccflags 'arg list'
90-
arguments to pass on each 5c, 6c, or 8c compiler invocation
91+
arguments to pass on each 5c, 6c, or 8c compiler invocation.
9192
-compiler name
92-
name of compiler to use, as in runtime.Compiler (gccgo or gc)
93+
name of compiler to use, as in runtime.Compiler (gccgo or gc).
9394
-gccgoflags 'arg list'
94-
arguments to pass on each gccgo compiler/linker invocation
95+
arguments to pass on each gccgo compiler/linker invocation.
9596
-gcflags 'arg list'
96-
arguments to pass on each 5g, 6g, or 8g compiler invocation
97+
arguments to pass on each 5g, 6g, or 8g compiler invocation.
98+
-installsuffix suffix
99+
a suffix to use in the name of the package installation directory,
100+
in order to keep output separate from default builds.
101+
If using the -race flag, the install suffix is automatically set to race
102+
or, if set explicitly, has _race appended to it.
97103
-ldflags 'flag list'
98-
arguments to pass on each 5l, 6l, or 8l linker invocation
104+
arguments to pass on each 5l, 6l, or 8l linker invocation.
99105
-tags 'tag list'
100106
a list of build tags to consider satisfied during the build.
101107
See the documentation for the go/build package for

‎src/cmd/go/go11.go

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// Copyright 2013 The Go Authors. All rights reserved.
2+
// Use of this source code is governed by a BSD-style
3+
// license that can be found in the LICENSE file.
4+
5+
// +build go1.1
6+
7+
package main
8+
9+
// Test that go1.1 tag above is included in builds. main.go refers to this definition.
10+
const go11tag = true

‎src/cmd/go/main.go

+4
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ func setExitStatus(n int) {
108108
}
109109

110110
func main() {
111+
_ = go11tag
111112
flag.Usage = usage
112113
flag.Parse()
113114
log.SetFlags(0)
@@ -189,6 +190,9 @@ var documentationTemplate = `// Copyright 2011 The Go Authors. All rights reser
189190
// Use of this source code is governed by a BSD-style
190191
// license that can be found in the LICENSE file.
191192
193+
// DO NOT EDIT THIS FILE. GENERATED BY mkdoc.sh.
194+
// Edit the documentation in other files and rerun mkdoc.sh to generate this one.
195+
192196
/*
193197
{{range .}}{{if .Short}}{{.Short | capitalize}}
194198

‎src/pkg/go/build/build.go

+49-17
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,31 @@ import (
2727

2828
// A Context specifies the supporting context for a build.
2929
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
3955

4056
// By default, Import uses the operating system's file system calls
4157
// to read directories and files. To read from other sources,
@@ -267,6 +283,17 @@ func defaultContext() Context {
267283
c.GOPATH = envOr("GOPATH", "")
268284
c.Compiler = runtime.Compiler
269285

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+
270297
switch os.Getenv("CGO_ENABLED") {
271298
case "1":
272299
c.CgoEnabled = true
@@ -397,11 +424,11 @@ func (ctxt *Context) Import(path string, srcDir string, mode ImportMode) (*Packa
397424
dir, elem := pathpkg.Split(p.ImportPath)
398425
pkga = "pkg/gccgo/" + dir + "lib" + elem + ".a"
399426
case "gc":
400-
tag := ""
401-
if ctxt.InstallTag != "" {
402-
tag = "_" + ctxt.InstallTag
427+
suffix := ""
428+
if ctxt.InstallSuffix != "" {
429+
suffix = "_" + ctxt.InstallSuffix
403430
}
404-
pkga = "pkg/" + ctxt.GOOS + "_" + ctxt.GOARCH + tag + "/" + p.ImportPath + ".a"
431+
pkga = "pkg/" + ctxt.GOOS + "_" + ctxt.GOARCH + suffix + "/" + p.ImportPath + ".a"
405432
default:
406433
// Save error for end of function.
407434
pkgerr = fmt.Errorf("import %q: unknown compiler %q", path, ctxt.Compiler)
@@ -970,8 +997,8 @@ func splitQuoted(s string) (r []string, err error) {
970997
// !cgo (if cgo is disabled)
971998
// ctxt.Compiler
972999
// !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)
9751002
// a comma-separated list of any of these
9761003
//
9771004
func (ctxt *Context) match(name string) bool {
@@ -989,10 +1016,10 @@ func (ctxt *Context) match(name string) bool {
9891016
return len(name) > 1 && !ctxt.match(name[1:])
9901017
}
9911018

992-
// Tags must be letters, digits, underscores.
1019+
// Tags must be letters, digits, underscores or dots.
9931020
// Unlike in Go identifiers, all digits are fine (e.g., "386").
9941021
for _, c := range name {
995-
if !unicode.IsLetter(c) && !unicode.IsDigit(c) && c != '_' {
1022+
if !unicode.IsLetter(c) && !unicode.IsDigit(c) && c != '_' && c != '.' {
9961023
return false
9971024
}
9981025
}
@@ -1011,6 +1038,11 @@ func (ctxt *Context) match(name string) bool {
10111038
return true
10121039
}
10131040
}
1041+
for _, tag := range ctxt.ReleaseTags {
1042+
if tag == name {
1043+
return true
1044+
}
1045+
}
10141046

10151047
return false
10161048
}

0 commit comments

Comments
 (0)
Please sign in to comment.