diff options
author | Ian Lance Taylor <iant@golang.org> | 2020-02-24 06:38:11 -0800 |
---|---|---|
committer | Ian Lance Taylor <iant@golang.org> | 2020-02-24 06:42:05 -0800 |
commit | 027a3f1c38727a1ea0969088b0680b2f6bb1e977 (patch) | |
tree | 520b0d69518e6ecfc4ee31e63b5a41d073a154df /libgo | |
parent | c77b6f95e014ad1f6654683ff56f9508fe7f268d (diff) | |
download | gcc-027a3f1c38727a1ea0969088b0680b2f6bb1e977.zip gcc-027a3f1c38727a1ea0969088b0680b2f6bb1e977.tar.gz gcc-027a3f1c38727a1ea0969088b0680b2f6bb1e977.tar.bz2 |
internal/syscall/unix: add hurd build tag
Patch from Svante Signell.
Fixes GCC PR go/93900
Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/220589
Diffstat (limited to 'libgo')
-rw-r--r-- | libgo/go/internal/syscall/unix/nonblocking.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/internal/syscall/unix/nonblocking.go b/libgo/go/internal/syscall/unix/nonblocking.go index 9b39bb2..1734cdc 100644 --- a/libgo/go/internal/syscall/unix/nonblocking.go +++ b/libgo/go/internal/syscall/unix/nonblocking.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 dragonfly freebsd linux netbsd openbsd +// +build dragonfly freebsd hurd linux netbsd openbsd package unix |