diff options
author | Ian Lance Taylor <iant@golang.org> | 2020-01-29 16:42:01 -0800 |
---|---|---|
committer | Ian Lance Taylor <iant@golang.org> | 2020-01-29 16:43:57 -0800 |
commit | 66af5a226acd0edfbafcbcac76ed268cee0612ed (patch) | |
tree | 025c7b9578137fc399c4a738bd687661c6d5dd87 | |
parent | 68f3759eff5ee498b52490213650b42b1ad89f16 (diff) | |
download | gcc-66af5a226acd0edfbafcbcac76ed268cee0612ed.zip gcc-66af5a226acd0edfbafcbcac76ed268cee0612ed.tar.gz gcc-66af5a226acd0edfbafcbcac76ed268cee0612ed.tar.bz2 |
runtime, syscall: add a couple of hurd build tags
Patch by Svante Signell.
Updates PR go/93468
Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/216959
-rw-r--r-- | gcc/go/gofrontend/MERGE | 2 | ||||
-rw-r--r-- | libgo/go/runtime/nbpipe_pipe2.go | 2 | ||||
-rw-r--r-- | libgo/go/syscall/sockcmsg_unix_other.go | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/gcc/go/gofrontend/MERGE b/gcc/go/gofrontend/MERGE index 8d08e91..4052951 100644 --- a/gcc/go/gofrontend/MERGE +++ b/gcc/go/gofrontend/MERGE @@ -1,4 +1,4 @@ -5b438257e6fe5f344ae2f973313f394cda85bf62 +d796680b5a78f686ed118578e81d5b1adf48508d The first line of this file holds the git revision number of the last merge done from the gofrontend repository. diff --git a/libgo/go/runtime/nbpipe_pipe2.go b/libgo/go/runtime/nbpipe_pipe2.go index e3639d9..76fb40c 100644 --- a/libgo/go/runtime/nbpipe_pipe2.go +++ b/libgo/go/runtime/nbpipe_pipe2.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build freebsd linux netbsd openbsd solaris +// +build freebsd hurd linux netbsd openbsd solaris package runtime diff --git a/libgo/go/syscall/sockcmsg_unix_other.go b/libgo/go/syscall/sockcmsg_unix_other.go index 65d9f18..3e7afe4 100644 --- a/libgo/go/syscall/sockcmsg_unix_other.go +++ b/libgo/go/syscall/sockcmsg_unix_other.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build aix darwin freebsd linux netbsd openbsd solaris +// +build aix darwin freebsd hurd linux netbsd openbsd solaris package syscall |