1
0
mirror of https://github.com/golang/go synced 2024-11-12 09:50:21 -07:00

cmd/go: removed stray whitespace added from a prior commit

Removed stray whitespace that was mistakenly included
when refactoring the fetching of the AR env variable
for commit d47eba9777.

cmd/go/internal/work/gccgo.go: deleted stray whitespace
This commit is contained in:
Ali Rizvi-Santiago 2018-11-13 22:05:07 -06:00
parent 7f9f1a658a
commit 57ea7ddc1c

View File

@ -198,7 +198,6 @@ func (tools gccgoToolchain) pack(b *Builder, a *Action, afile string, ofiles []s
for _, f := range ofiles {
absOfiles = append(absOfiles, mkAbs(objdir, f))
}
var arArgs []string
if cfg.Goos == "aix" && cfg.Goarch == "ppc64" {
// AIX puts both 32-bit and 64-bit objects in the same archive.
@ -211,7 +210,6 @@ func (tools gccgoToolchain) pack(b *Builder, a *Action, afile string, ofiles []s
}
func (tools gccgoToolchain) link(b *Builder, root *Action, out, importcfg string, allactions []*Action, buildmode, desc string) error {
// gccgo needs explicit linking with all package dependencies,
// and all LDFLAGS from cgo dependencies.
afiles := []string{}