Hello,
Latest Debian snapshot of gcc (20200917-1) FTBFS due to a missing hurd
entry in the // +build line of libgo/go/net/fd_posix.go. Attached is a
patch for that missing entry.
With it the latest Debian snapshot has been successfully built. Test
results for libgo and go are:
=== libgo Summary ===
# of expected passes 163
# of unexpected failures 12
=== go Summary ===
# of expected passes 7469
# of unexpected failures 10
# of expected failures 1
# of untested testcases 6
# of unsupported tests 2
Thanks!
--- a/src/libgo/go/net/fd_posix.go 2020-08-03 15:12:53.000000000 +0200
+++ b/src/libgo/go/net/fd_posix.go 2020-09-24 16:03:50.000000000 +0200
@@ -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 dragonfly freebsd linux netbsd openbsd solaris windows
+// +build aix darwin dragonfly freebsd hurd linux netbsd openbsd solaris windows
package net