diff mbox series

libgo patch committed: Add hurd build tag for setReadMsgCloseOnExec

Message ID CAOyqgcX96eiMvOZ-4f1e9A9U01bRunzt5o7vV-7PddWFwnURtA@mail.gmail.com
State New
Headers show
Series libgo patch committed: Add hurd build tag for setReadMsgCloseOnExec | expand

Commit Message

Ian Lance Taylor Feb. 17, 2022, 5:30 p.m. UTC
This libgo patch, from Svante Signell, adds a hurd build tag for
setReadMsgCloseOnExec.  This fixes GCC PRs 103573 and 104290.
Bootstrapped and ran Go testsuite on x86_64-pc-linux-gnu (which
doesn't test much).  Committed to mainline.

Ian
8ec374f329b72e640bffe3abf8c082f9a287adb3
diff mbox series

Patch

diff --git a/gcc/go/gofrontend/MERGE b/gcc/go/gofrontend/MERGE
index 3742414c828..1fdc5a95d44 100644
--- a/gcc/go/gofrontend/MERGE
+++ b/gcc/go/gofrontend/MERGE
@@ -1,4 +1,4 @@ 
-3742e8a154bfec805054b4ebf0809f12dc7694da
+90ed127ef053b758288af9c4e43473e257770bc3
 
 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/net/unixsock_readmsg_cloexec.go b/libgo/go/net/unixsock_readmsg_cloexec.go
index fa4fd7d9331..84479e58d65 100644
--- a/libgo/go/net/unixsock_readmsg_cloexec.go
+++ b/libgo/go/net/unixsock_readmsg_cloexec.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.
 
-//go:build aix || darwin || freebsd || solaris
+//go:build aix || darwin || freebsd || hurd || solaris
 
 package net