public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug go/98153] New: [11 Regression] libgo ftbfs on i686-gnu
@ 2020-12-05  9:24 doko at debian dot org
  2020-12-07  7:52 ` [Bug go/98153] " rguenth at gcc dot gnu.org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: doko at debian dot org @ 2020-12-05  9:24 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=98153

            Bug ID: 98153
           Summary: [11 Regression] libgo ftbfs on i686-gnu
           Product: gcc
           Version: 11.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: go
          Assignee: ian at airs dot com
          Reporter: doko at debian dot org
                CC: cmang at google dot com
  Target Milestone: ---

trunk 20201204 ftbfs on i686-gnu:

../../../src/libgo/go/syscall/socket_bsd.go:97:25: error: reference to
undefined name 'AF_LINK'
   97 |         sa.raw.Family = AF_LINK
      |                         ^
Makefile:2957: recipe for target 'syscall.lo' failed
make[6]: *** [syscall.lo] Error 1
make[6]: Leaving directory '/<<PKGBUILDDIR>>/build/i686-gnu/libgo'
Makefile:2287: recipe for target 'all-recursive' failed
make[5]: *** [all-recursive] Error 1

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug go/98153] [11 Regression] libgo ftbfs on i686-gnu
  2020-12-05  9:24 [Bug go/98153] New: [11 Regression] libgo ftbfs on i686-gnu doko at debian dot org
@ 2020-12-07  7:52 ` rguenth at gcc dot gnu.org
  2020-12-07 22:06 ` svante.signell at gmail dot com
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: rguenth at gcc dot gnu.org @ 2020-12-07  7:52 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=98153

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |11.0

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug go/98153] [11 Regression] libgo ftbfs on i686-gnu
  2020-12-05  9:24 [Bug go/98153] New: [11 Regression] libgo ftbfs on i686-gnu doko at debian dot org
  2020-12-07  7:52 ` [Bug go/98153] " rguenth at gcc dot gnu.org
@ 2020-12-07 22:06 ` svante.signell at gmail dot com
  2020-12-07 22:11 ` svante.signell at gmail dot com
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: svante.signell at gmail dot com @ 2020-12-07 22:06 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=98153

--- Comment #1 from Svante Signell <svante.signell at gmail dot com> ---
Created attachment 49702
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=49702&action=edit
Build fix of libgo for GNU/Hurd

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug go/98153] [11 Regression] libgo ftbfs on i686-gnu
  2020-12-05  9:24 [Bug go/98153] New: [11 Regression] libgo ftbfs on i686-gnu doko at debian dot org
  2020-12-07  7:52 ` [Bug go/98153] " rguenth at gcc dot gnu.org
  2020-12-07 22:06 ` svante.signell at gmail dot com
@ 2020-12-07 22:11 ` svante.signell at gmail dot com
  2020-12-08  1:08 ` cvs-commit at gcc dot gnu.org
  2020-12-08  1:10 ` ian at airs dot com
  4 siblings, 0 replies; 6+ messages in thread
From: svante.signell at gmail dot com @ 2020-12-07 22:11 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=98153

--- Comment #2 from Svante Signell <svante.signell at gmail dot com> ---
Hello,

Looking into the build failure of libgo for GNU/Hurd reveals that since AF_LINK
is not yet supported, the corresponding code for SockaddrDatalink stuff needs
to be stripped off socket_bsd.go, thereby creating socket_hurd.go. This is
reflected in the attached patch.

Thanks!

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug go/98153] [11 Regression] libgo ftbfs on i686-gnu
  2020-12-05  9:24 [Bug go/98153] New: [11 Regression] libgo ftbfs on i686-gnu doko at debian dot org
                   ` (2 preceding siblings ...)
  2020-12-07 22:11 ` svante.signell at gmail dot com
@ 2020-12-08  1:08 ` cvs-commit at gcc dot gnu.org
  2020-12-08  1:10 ` ian at airs dot com
  4 siblings, 0 replies; 6+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2020-12-08  1:08 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=98153

--- Comment #3 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Ian Lance Taylor <ian@gcc.gnu.org>:

https://gcc.gnu.org/g:9121f8084162ff6193a5e941cab1429e4180997a

commit r11-5834-g9121f8084162ff6193a5e941cab1429e4180997a
Author: Ian Lance Taylor <iant@golang.org>
Date:   Mon Dec 7 15:25:43 2020 -0800

    syscall: don't use AF_LINK on hurd

    Patch from Svante Signell.

    Fixes PR go/98153

    Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/275939

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug go/98153] [11 Regression] libgo ftbfs on i686-gnu
  2020-12-05  9:24 [Bug go/98153] New: [11 Regression] libgo ftbfs on i686-gnu doko at debian dot org
                   ` (3 preceding siblings ...)
  2020-12-08  1:08 ` cvs-commit at gcc dot gnu.org
@ 2020-12-08  1:10 ` ian at airs dot com
  4 siblings, 0 replies; 6+ messages in thread
From: ian at airs dot com @ 2020-12-08  1:10 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=98153

Ian Lance Taylor <ian at airs dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED

--- Comment #4 from Ian Lance Taylor <ian at airs dot com> ---
Thanks.  Patch committed.

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2020-12-08  1:10 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-05  9:24 [Bug go/98153] New: [11 Regression] libgo ftbfs on i686-gnu doko at debian dot org
2020-12-07  7:52 ` [Bug go/98153] " rguenth at gcc dot gnu.org
2020-12-07 22:06 ` svante.signell at gmail dot com
2020-12-07 22:11 ` svante.signell at gmail dot com
2020-12-08  1:08 ` cvs-commit at gcc dot gnu.org
2020-12-08  1:10 ` ian at airs dot com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).