diff mbox series

New patch for the port of gccgo to GNU/Hurd

Message ID 64153cb89a2ada34126f1f4e300eed908e0faf00.camel@gmail.com
State New
Headers show
Series New patch for the port of gccgo to GNU/Hurd | expand

Commit Message

Li, Pan2 via Gcc-patches Sept. 25, 2020, 3:04 p.m. UTC
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!

Comments

Ian Lance Taylor Sept. 28, 2020, 11:17 p.m. UTC | #1
On Fri, Sep 25, 2020 at 8:04 AM Svante Signell <svante.signell@gmail.com> wrote:
>
> 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.

Thanks.  Committed to mainline.

Ian
diff mbox series

Patch

--- 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