aboutsummaryrefslogtreecommitdiff
path: root/libgo/go
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@gcc.gnu.org>2018-02-05 01:38:34 +0000
committerIan Lance Taylor <ian@gcc.gnu.org>2018-02-05 01:38:34 +0000
commit59597e373547a60ee635083f06ef322f8537f7c0 (patch)
tree6ec8b83dfacb7196cfc08401ace4fa0a2def9067 /libgo/go
parent56d6cc37bde81bb79abc0540346dc414e148ce29 (diff)
downloadgcc-59597e373547a60ee635083f06ef322f8537f7c0.zip
gcc-59597e373547a60ee635083f06ef322f8537f7c0.tar.gz
gcc-59597e373547a60ee635083f06ef322f8537f7c0.tar.bz2
cmd/go: don't lose last flag from _cgo_flags
The quoting code that read _cgo_flags, currently only in the gccgo version of cmd/go, was losing the last flag read from the file. Fixes golang/go#23666 Reviewed-on: https://go-review.googlesource.com/91655 From-SVN: r257373
Diffstat (limited to 'libgo/go')
-rw-r--r--libgo/go/cmd/go/internal/work/gccgo.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/libgo/go/cmd/go/internal/work/gccgo.go b/libgo/go/cmd/go/internal/work/gccgo.go
index 8f55846..72d4d9d 100644
--- a/libgo/go/cmd/go/internal/work/gccgo.go
+++ b/libgo/go/cmd/go/internal/work/gccgo.go
@@ -258,6 +258,9 @@ func (tools gccgoToolchain) link(b *Builder, root *Action, out, importcfg string
nl = append(nl, b)
start = false
}
+ if len(nl) > 0 {
+ cgoldflags = append(cgoldflags, string(nl))
+ }
}
}
return nil