public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug go/104290] New: [12 Regression] trunk 20220126 fails to build libgo on i686-gnu
@ 2022-01-30 13:38 doko at debian dot org
  2022-01-31  8:21 ` [Bug go/104290] " rguenth at gcc dot gnu.org
                   ` (34 more replies)
  0 siblings, 35 replies; 36+ messages in thread
From: doko at debian dot org @ 2022-01-30 13:38 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 104290
           Summary: [12 Regression] trunk 20220126 fails to build libgo on
                    i686-gnu
           Product: gcc
           Version: 12.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 20220126 fails to build libgo on i686-gnu:

../../../src/libgo/go/net/unixsock_posix.go:116:56: error: reference to
undefined name 'readMsgFlags'
  116 |         n, oobn, flags, sa, err = c.fd.readMsg(b, oob, readMsgFlags)
      |                                                        ^
../../../src/libgo/go/net/unixsock_posix.go:117:12: error: reference to
undefined name 'readMsgFlags'
  117 |         if readMsgFlags == 0 && err == nil && oobn > 0 {
      |            ^
../../../src/libgo/go/net/unixsock_posix.go:118:17: error: reference to
undefined name 'setReadMsgCloseOnExec'
  118 |                 setReadMsgCloseOnExec(oob[:oobn])
      |                 ^
Makefile:3026: recipe for target 'net.lo' failed
make[6]: *** [net.lo] Error 1

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

* [Bug go/104290] [12 Regression] trunk 20220126 fails to build libgo on i686-gnu
  2022-01-30 13:38 [Bug go/104290] New: [12 Regression] trunk 20220126 fails to build libgo on i686-gnu doko at debian dot org
@ 2022-01-31  8:21 ` rguenth at gcc dot gnu.org
  2022-02-03 15:16 ` svante.signell at gmail dot com
                   ` (33 subsequent siblings)
  34 siblings, 0 replies; 36+ messages in thread
From: rguenth at gcc dot gnu.org @ 2022-01-31  8:21 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |12.0

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

* [Bug go/104290] [12 Regression] trunk 20220126 fails to build libgo on i686-gnu
  2022-01-30 13:38 [Bug go/104290] New: [12 Regression] trunk 20220126 fails to build libgo on i686-gnu doko at debian dot org
  2022-01-31  8:21 ` [Bug go/104290] " rguenth at gcc dot gnu.org
@ 2022-02-03 15:16 ` svante.signell at gmail dot com
  2022-02-06 11:43 ` svante.signell at gmail dot com
                   ` (32 subsequent siblings)
  34 siblings, 0 replies; 36+ messages in thread
From: svante.signell at gmail dot com @ 2022-02-03 15:16 UTC (permalink / raw)
  To: gcc-bugs

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

Svante Signell <svante.signell at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |svante.signell at gmail dot com

--- Comment #1 from Svante Signell <svante.signell at gmail dot com> ---
Created attachment 52345
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=52345&action=edit
Adding hurd to unixsock_readmsg_cloexec.go fixes the build of libgo

Hello,

The attached patch fixes the build of libgo for GNU/Hurd for gcc-12-20220126
when patching the generated libgo/Makefile as follows:

change
../libbacktrace/libbacktrace.la
to
../../libbacktrace/libbacktrace.la

and remove libatomic from the linkage:
LIBATOMIC = ../libatomic/libatomic_convenience.la
PTHREAD_CFLAGS = -pthread -L../libatomic/.libs
since libatomic is not built yet. It should built before libgo but does not.
Unknown why, it may be a problem with the Debian stuff.

Additionally, continuing, the build of gotools fails:
go1: error: '-fsplit-stack' currently only supported on GNU/Linux
go1: error: '-fsplit-stack' is not supported by this compiler configuration

The reason for this also unknown so far, libgo and gotools built fine with
split-stack on gcc-11. 

Is this problem related to that libatomic not yet has bee built??

Thanks!

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

* [Bug go/104290] [12 Regression] trunk 20220126 fails to build libgo on i686-gnu
  2022-01-30 13:38 [Bug go/104290] New: [12 Regression] trunk 20220126 fails to build libgo on i686-gnu doko at debian dot org
  2022-01-31  8:21 ` [Bug go/104290] " rguenth at gcc dot gnu.org
  2022-02-03 15:16 ` svante.signell at gmail dot com
@ 2022-02-06 11:43 ` svante.signell at gmail dot com
  2022-02-08 17:08 ` svante.signell at gmail dot com
                   ` (31 subsequent siblings)
  34 siblings, 0 replies; 36+ messages in thread
From: svante.signell at gmail dot com @ 2022-02-06 11:43 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 from Svante Signell <svante.signell at gmail dot com> ---
Created attachment 52360
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=52360&action=edit
Fix broken split-stack support for GNU/Hurd

Hello,

The attached patch defines OPTION_GLIBC_P and OPTION_GLIBC that was lost for
config/gnu.h, thus enabling split-stack support for GNU/Hurd again. 

This problem happened with the latest commit and fixes for #104170 and as
discussed in the mail thread starting with
https://gcc.gnu.org/pipermail/gcc-patches/2022-January/588973.html.

I'll submit both patches in this bug report to gcc-patches soon, if nobody
takes this problem up here. I still need to find out why libgo is built before
libatomic
and why libbacktrace is not found where excpected.

Thanks!

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

* [Bug go/104290] [12 Regression] trunk 20220126 fails to build libgo on i686-gnu
  2022-01-30 13:38 [Bug go/104290] New: [12 Regression] trunk 20220126 fails to build libgo on i686-gnu doko at debian dot org
                   ` (2 preceding siblings ...)
  2022-02-06 11:43 ` svante.signell at gmail dot com
@ 2022-02-08 17:08 ` svante.signell at gmail dot com
  2022-02-08 17:29 ` schwab@linux-m68k.org
                   ` (30 subsequent siblings)
  34 siblings, 0 replies; 36+ messages in thread
From: svante.signell at gmail dot com @ 2022-02-08 17:08 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #3 from Svante Signell <svante.signell at gmail dot com> ---
With the proposed patches everything builds fine. The only issue to resolve is
how to make sure libatomic and libbacktrace builds in build/i686-gnu before
libgo/gotools.

Any ideas? I'm not sure if this is a Debian or upstream problem.

After a failed build I did:
make -C build configure-target-libatomic
make -C build/i686-gnu/libatomic/

make -C build configure-target-libbacktrace
make -C build/i686-gnu/libbacktrace/

debian/rules build
fakeroot debian/rules binary
All debs built fine.

Additionally make -C build/i686-gnu/libgo check reports in
build/i686-gnu/libgo/libgo.sum

                === libgo Summary ===

# of expected passes            181
# of unexpected failures        9

Thanks!

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

* [Bug go/104290] [12 Regression] trunk 20220126 fails to build libgo on i686-gnu
  2022-01-30 13:38 [Bug go/104290] New: [12 Regression] trunk 20220126 fails to build libgo on i686-gnu doko at debian dot org
                   ` (3 preceding siblings ...)
  2022-02-08 17:08 ` svante.signell at gmail dot com
@ 2022-02-08 17:29 ` schwab@linux-m68k.org
  2022-02-08 17:50 ` ian at airs dot com
                   ` (29 subsequent siblings)
  34 siblings, 0 replies; 36+ messages in thread
From: schwab@linux-m68k.org @ 2022-02-08 17:29 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #4 from Andreas Schwab <schwab@linux-m68k.org> ---
Makefile.def already has the required dependencies:

dependencies = { module=all-target-libgo; on=all-target-libbacktrace; };
dependencies = { module=all-target-libgo; on=all-target-libffi; };
dependencies = { module=all-target-libgo; on=all-target-libatomic; };

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

* [Bug go/104290] [12 Regression] trunk 20220126 fails to build libgo on i686-gnu
  2022-01-30 13:38 [Bug go/104290] New: [12 Regression] trunk 20220126 fails to build libgo on i686-gnu doko at debian dot org
                   ` (4 preceding siblings ...)
  2022-02-08 17:29 ` schwab@linux-m68k.org
@ 2022-02-08 17:50 ` ian at airs dot com
  2022-02-08 19:37 ` svante.signell at gmail dot com
                   ` (28 subsequent siblings)
  34 siblings, 0 replies; 36+ messages in thread
From: ian at airs dot com @ 2022-02-08 17:50 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #5 from Ian Lance Taylor <ian at airs dot com> ---
> The only issue to resolve is how to make sure libatomic and libbacktrace builds in build/i686-gnu before libgo/gotools.

That question doesn't sound right.  The gotools are built for the target.  They
shouldn't depend on build/i686-gnu, which is built for the host.  The gotools
should depend on the target libatomic and the target libbacktrace, and they do.

What problem are you trying to solve?

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

* [Bug go/104290] [12 Regression] trunk 20220126 fails to build libgo on i686-gnu
  2022-01-30 13:38 [Bug go/104290] New: [12 Regression] trunk 20220126 fails to build libgo on i686-gnu doko at debian dot org
                   ` (5 preceding siblings ...)
  2022-02-08 17:50 ` ian at airs dot com
@ 2022-02-08 19:37 ` svante.signell at gmail dot com
  2022-02-08 19:44 ` schwab@linux-m68k.org
                   ` (27 subsequent siblings)
  34 siblings, 0 replies; 36+ messages in thread
From: svante.signell at gmail dot com @ 2022-02-08 19:37 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #6 from Svante Signell <svante.signell at gmail dot com> ---
OK, forget about the gotools. The problem is that libgo is built _before_
libatomic and libbacktrace. A Debian error??

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

* [Bug go/104290] [12 Regression] trunk 20220126 fails to build libgo on i686-gnu
  2022-01-30 13:38 [Bug go/104290] New: [12 Regression] trunk 20220126 fails to build libgo on i686-gnu doko at debian dot org
                   ` (6 preceding siblings ...)
  2022-02-08 19:37 ` svante.signell at gmail dot com
@ 2022-02-08 19:44 ` schwab@linux-m68k.org
  2022-02-09 22:11 ` svante.signell at gmail dot com
                   ` (26 subsequent siblings)
  34 siblings, 0 replies; 36+ messages in thread
From: schwab@linux-m68k.org @ 2022-02-08 19:44 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #7 from Andreas Schwab <schwab@linux-m68k.org> ---
If you make all-target-libgo all dependencies are respected.

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

* [Bug go/104290] [12 Regression] trunk 20220126 fails to build libgo on i686-gnu
  2022-01-30 13:38 [Bug go/104290] New: [12 Regression] trunk 20220126 fails to build libgo on i686-gnu doko at debian dot org
                   ` (7 preceding siblings ...)
  2022-02-08 19:44 ` schwab@linux-m68k.org
@ 2022-02-09 22:11 ` svante.signell at gmail dot com
  2022-02-17 17:30 ` cvs-commit at gcc dot gnu.org
                   ` (25 subsequent siblings)
  34 siblings, 0 replies; 36+ messages in thread
From: svante.signell at gmail dot com @ 2022-02-09 22:11 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #8 from Svante Signell <svante.signell at gmail dot com> ---
> If you make all-target-libgo all dependencies are respected.

Sorry but that is not how things work:
all-target-libgo: maybe-all-target-libffi
is outside any conditionals, but 
all-target-libgo: maybe-all-target-libbacktrace
all-target-libgo: maybe-all-target-libatomic
are inside the conditional
@unless gcc-bootstrap
@endunless gcc-bootstrap
in src/Makefile.in :(
and therefore not included in the generated build/Makefile.

The unless/endunless condition does not seem to be met in the generated
build/Makefile.

As far as I've searched, no understandable explanation of 
@unless/@endunless gcc-bootstrap is found in the gcc-12 tree either. No
explanation in Makefile.tpl

I found only a commit for binutils-gdb:
https://isrc.iscas.ac.cn/gitlab/mirrors/sourceware.org/git_binutils-gdb/-/commit/4119873a48042e532f7485b84cca83ea0bf1fcf6
but that one is not very informative :(

moving
all-target-libgo: maybe-all-target-libbacktrace
all-target-libgo: maybe-all-target-libatomic
next to
all-target-libgo: maybe-all-target-libffi
in Makefile.in all works fine.

Generating a new version of Makefile.in by:
(cd source; autogen Makefile.def)
does not solve the problem: the same buggy build/Makefile is created.

This is not a Debian problem, it is an upstream bug, as far as I've found.

It seems like everything not linux-any is left unsupported, not a nice
situation... Your choice!

And patching gnu.h to not support split-stack any longer is really not nice.
Don't you ever build gcc for GNU/Hurd? If not maybe I can help to set up such a
build environment. Just let me know!!

Thanks!

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

* [Bug go/104290] [12 Regression] trunk 20220126 fails to build libgo on i686-gnu
  2022-01-30 13:38 [Bug go/104290] New: [12 Regression] trunk 20220126 fails to build libgo on i686-gnu doko at debian dot org
                   ` (8 preceding siblings ...)
  2022-02-09 22:11 ` svante.signell at gmail dot com
@ 2022-02-17 17:30 ` cvs-commit at gcc dot gnu.org
  2022-02-17 22:20 ` svante.signell at gmail dot com
                   ` (24 subsequent siblings)
  34 siblings, 0 replies; 36+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2022-02-17 17:30 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #9 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:3f2a6b041d910cab08332ae01a8a9fcfe2e9036a

commit r12-7280-g3f2a6b041d910cab08332ae01a8a9fcfe2e9036a
Author: Ian Lance Taylor <iant@golang.org>
Date:   Wed Feb 16 16:57:28 2022 -0800

    net: add hurd build tag for setReadMsgCloseOnExec

    Patch from Svante Signell.

            PR go/103573
            PR go/104290

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

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

* [Bug go/104290] [12 Regression] trunk 20220126 fails to build libgo on i686-gnu
  2022-01-30 13:38 [Bug go/104290] New: [12 Regression] trunk 20220126 fails to build libgo on i686-gnu doko at debian dot org
                   ` (9 preceding siblings ...)
  2022-02-17 17:30 ` cvs-commit at gcc dot gnu.org
@ 2022-02-17 22:20 ` svante.signell at gmail dot com
  2022-02-17 22:21 ` svante.signell at gmail dot com
                   ` (23 subsequent siblings)
  34 siblings, 0 replies; 36+ messages in thread
From: svante.signell at gmail dot com @ 2022-02-17 22:20 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #10 from Svante Signell <svante.signell at gmail dot com> ---
Created attachment 52464
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=52464&action=edit
patch #1

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

* [Bug go/104290] [12 Regression] trunk 20220126 fails to build libgo on i686-gnu
  2022-01-30 13:38 [Bug go/104290] New: [12 Regression] trunk 20220126 fails to build libgo on i686-gnu doko at debian dot org
                   ` (10 preceding siblings ...)
  2022-02-17 22:20 ` svante.signell at gmail dot com
@ 2022-02-17 22:21 ` svante.signell at gmail dot com
  2022-02-17 22:22 ` svante.signell at gmail dot com
                   ` (22 subsequent siblings)
  34 siblings, 0 replies; 36+ messages in thread
From: svante.signell at gmail dot com @ 2022-02-17 22:21 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #11 from Svante Signell <svante.signell at gmail dot com> ---
Created attachment 52465
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=52465&action=edit
pathch #2

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

* [Bug go/104290] [12 Regression] trunk 20220126 fails to build libgo on i686-gnu
  2022-01-30 13:38 [Bug go/104290] New: [12 Regression] trunk 20220126 fails to build libgo on i686-gnu doko at debian dot org
                   ` (11 preceding siblings ...)
  2022-02-17 22:21 ` svante.signell at gmail dot com
@ 2022-02-17 22:22 ` svante.signell at gmail dot com
  2022-02-17 22:23 ` svante.signell at gmail dot com
                   ` (21 subsequent siblings)
  34 siblings, 0 replies; 36+ messages in thread
From: svante.signell at gmail dot com @ 2022-02-17 22:22 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #12 from Svante Signell <svante.signell at gmail dot com> ---
Created attachment 52466
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=52466&action=edit
patch #3

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

* [Bug go/104290] [12 Regression] trunk 20220126 fails to build libgo on i686-gnu
  2022-01-30 13:38 [Bug go/104290] New: [12 Regression] trunk 20220126 fails to build libgo on i686-gnu doko at debian dot org
                   ` (12 preceding siblings ...)
  2022-02-17 22:22 ` svante.signell at gmail dot com
@ 2022-02-17 22:23 ` svante.signell at gmail dot com
  2022-02-17 22:23 ` svante.signell at gmail dot com
                   ` (20 subsequent siblings)
  34 siblings, 0 replies; 36+ messages in thread
From: svante.signell at gmail dot com @ 2022-02-17 22:23 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #13 from Svante Signell <svante.signell at gmail dot com> ---
Created attachment 52467
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=52467&action=edit
patch #4

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

* [Bug go/104290] [12 Regression] trunk 20220126 fails to build libgo on i686-gnu
  2022-01-30 13:38 [Bug go/104290] New: [12 Regression] trunk 20220126 fails to build libgo on i686-gnu doko at debian dot org
                   ` (13 preceding siblings ...)
  2022-02-17 22:23 ` svante.signell at gmail dot com
@ 2022-02-17 22:23 ` svante.signell at gmail dot com
  2022-02-17 22:24 ` svante.signell at gmail dot com
                   ` (19 subsequent siblings)
  34 siblings, 0 replies; 36+ messages in thread
From: svante.signell at gmail dot com @ 2022-02-17 22:23 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #14 from Svante Signell <svante.signell at gmail dot com> ---
Created attachment 52468
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=52468&action=edit
patch #5

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

* [Bug go/104290] [12 Regression] trunk 20220126 fails to build libgo on i686-gnu
  2022-01-30 13:38 [Bug go/104290] New: [12 Regression] trunk 20220126 fails to build libgo on i686-gnu doko at debian dot org
                   ` (14 preceding siblings ...)
  2022-02-17 22:23 ` svante.signell at gmail dot com
@ 2022-02-17 22:24 ` svante.signell at gmail dot com
  2022-02-17 22:25 ` svante.signell at gmail dot com
                   ` (18 subsequent siblings)
  34 siblings, 0 replies; 36+ messages in thread
From: svante.signell at gmail dot com @ 2022-02-17 22:24 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #15 from Svante Signell <svante.signell at gmail dot com> ---
Created attachment 52469
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=52469&action=edit
patch #6

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

* [Bug go/104290] [12 Regression] trunk 20220126 fails to build libgo on i686-gnu
  2022-01-30 13:38 [Bug go/104290] New: [12 Regression] trunk 20220126 fails to build libgo on i686-gnu doko at debian dot org
                   ` (15 preceding siblings ...)
  2022-02-17 22:24 ` svante.signell at gmail dot com
@ 2022-02-17 22:25 ` svante.signell at gmail dot com
  2022-02-17 22:25 ` svante.signell at gmail dot com
                   ` (17 subsequent siblings)
  34 siblings, 0 replies; 36+ messages in thread
From: svante.signell at gmail dot com @ 2022-02-17 22:25 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #16 from Svante Signell <svante.signell at gmail dot com> ---
Created attachment 52470
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=52470&action=edit
patch #7

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

* [Bug go/104290] [12 Regression] trunk 20220126 fails to build libgo on i686-gnu
  2022-01-30 13:38 [Bug go/104290] New: [12 Regression] trunk 20220126 fails to build libgo on i686-gnu doko at debian dot org
                   ` (16 preceding siblings ...)
  2022-02-17 22:25 ` svante.signell at gmail dot com
@ 2022-02-17 22:25 ` svante.signell at gmail dot com
  2022-02-17 22:26 ` svante.signell at gmail dot com
                   ` (16 subsequent siblings)
  34 siblings, 0 replies; 36+ messages in thread
From: svante.signell at gmail dot com @ 2022-02-17 22:25 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #17 from Svante Signell <svante.signell at gmail dot com> ---
Created attachment 52471
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=52471&action=edit
Patch #8

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

* [Bug go/104290] [12 Regression] trunk 20220126 fails to build libgo on i686-gnu
  2022-01-30 13:38 [Bug go/104290] New: [12 Regression] trunk 20220126 fails to build libgo on i686-gnu doko at debian dot org
                   ` (17 preceding siblings ...)
  2022-02-17 22:25 ` svante.signell at gmail dot com
@ 2022-02-17 22:26 ` svante.signell at gmail dot com
  2022-02-17 22:41 ` svante.signell at gmail dot com
                   ` (15 subsequent siblings)
  34 siblings, 0 replies; 36+ messages in thread
From: svante.signell at gmail dot com @ 2022-02-17 22:26 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #18 from Svante Signell <svante.signell at gmail dot com> ---
Created attachment 52472
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=52472&action=edit
patch #9

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

* [Bug go/104290] [12 Regression] trunk 20220126 fails to build libgo on i686-gnu
  2022-01-30 13:38 [Bug go/104290] New: [12 Regression] trunk 20220126 fails to build libgo on i686-gnu doko at debian dot org
                   ` (18 preceding siblings ...)
  2022-02-17 22:26 ` svante.signell at gmail dot com
@ 2022-02-17 22:41 ` svante.signell at gmail dot com
  2022-02-17 22:45 ` svante.signell at gmail dot com
                   ` (14 subsequent siblings)
  34 siblings, 0 replies; 36+ messages in thread
From: svante.signell at gmail dot com @ 2022-02-17 22:41 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #19 from Svante Signell <svante.signell at gmail dot com> ---
Hi again,

Attached are patch #1 to patch #9 to make libgo.so.21.0.0 to build
successfully, from the source gcc-12-12-20220214.

I see that the first patch:  "Adding hurd to unixsock_readmsg_cloexec.go" was
committed upstream today by Ian. Thanks!

Now remains the patch "Fix broken split-stack support for GNU/Hurd" plus patch
#1 to patch #9 to be upstreamed.

patch #9 patches Makefile.in to ensure that libbacktrace and libatomic are
built before libgo as explained in an earlier posting.

BTW: This bug should be retitled to:
[12 Regression] trunk 20220214 fails to build libgo on i686-gnu

Dunno however how to change it. And posting here does not result in an email to
me, how come? Fortunately the comments from other people results in an email.

Thanks!

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

* [Bug go/104290] [12 Regression] trunk 20220126 fails to build libgo on i686-gnu
  2022-01-30 13:38 [Bug go/104290] New: [12 Regression] trunk 20220126 fails to build libgo on i686-gnu doko at debian dot org
                   ` (19 preceding siblings ...)
  2022-02-17 22:41 ` svante.signell at gmail dot com
@ 2022-02-17 22:45 ` svante.signell at gmail dot com
  2022-02-18 18:28 ` ian at airs dot com
                   ` (13 subsequent siblings)
  34 siblings, 0 replies; 36+ messages in thread
From: svante.signell at gmail dot com @ 2022-02-17 22:45 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #20 from Svante Signell <svante.signell at gmail dot com> ---
Hi again,

Attached are patch #1 to patch #9 to make libgo.so.21.0.0 to build
successfully, from the source gcc-12-12-20220214.

I see that the first patch:  "Adding hurd to unixsock_readmsg_cloexec.go" was
committed upstream today by Ian. Thanks!

Now remains the patch "Fix broken split-stack support for GNU/Hurd" plus patch
#1 to patch #9 to be upstreamed.

patch #9 patches Makefile.in to ensure that libbacktrace and libatomic are
built before libgo as explained in an earlier posting.

BTW: This bug should be retitled to:
[12 Regression] trunk 20220214 fails to build libgo on i686-gnu

Dunno however how to change it. And posting here does not result in an email to
me, how come? Fortunately the comments from other people results in an email.

Thanks!

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

* [Bug go/104290] [12 Regression] trunk 20220126 fails to build libgo on i686-gnu
  2022-01-30 13:38 [Bug go/104290] New: [12 Regression] trunk 20220126 fails to build libgo on i686-gnu doko at debian dot org
                   ` (20 preceding siblings ...)
  2022-02-17 22:45 ` svante.signell at gmail dot com
@ 2022-02-18 18:28 ` ian at airs dot com
  2022-02-18 22:57 ` ian at airs dot com
                   ` (12 subsequent siblings)
  34 siblings, 0 replies; 36+ messages in thread
From: ian at airs dot com @ 2022-02-18 18:28 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #21 from Ian Lance Taylor <ian at airs dot com> ---
*** Bug 103573 has been marked as a duplicate of this bug. ***

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

* [Bug go/104290] [12 Regression] trunk 20220126 fails to build libgo on i686-gnu
  2022-01-30 13:38 [Bug go/104290] New: [12 Regression] trunk 20220126 fails to build libgo on i686-gnu doko at debian dot org
                   ` (21 preceding siblings ...)
  2022-02-18 18:28 ` ian at airs dot com
@ 2022-02-18 22:57 ` ian at airs dot com
  2022-02-18 23:33 ` [Bug go/104290] [12 Regression] trunk 20220214 " cvs-commit at gcc dot gnu.org
                   ` (11 subsequent siblings)
  34 siblings, 0 replies; 36+ messages in thread
From: ian at airs dot com @ 2022-02-18 22:57 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #22 from Ian Lance Taylor <ian at airs dot com> ---
Thanks.  I'll commit your patches #1 through #8.

Your patch #9 is to a generated file.  The fix there can't be to patch just the
top-level Makefile.in.  It has to be to patch whatever is causing Makefile.in
to be generated the way that it is.  I don't myself know what is going wrong
there.

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

* [Bug go/104290] [12 Regression] trunk 20220214 fails to build libgo on i686-gnu
  2022-01-30 13:38 [Bug go/104290] New: [12 Regression] trunk 20220126 fails to build libgo on i686-gnu doko at debian dot org
                   ` (22 preceding siblings ...)
  2022-02-18 22:57 ` ian at airs dot com
@ 2022-02-18 23:33 ` cvs-commit at gcc dot gnu.org
  2022-02-19  9:40 ` svante.signell at gmail dot com
                   ` (10 subsequent siblings)
  34 siblings, 0 replies; 36+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2022-02-18 23:33 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #23 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:3343e7e2c4cd2cd111cda86737f539cc6eda49ff

commit r12-7298-g3343e7e2c4cd2cd111cda86737f539cc6eda49ff
Author: Ian Lance Taylor <iant@golang.org>
Date:   Fri Feb 18 15:04:00 2022 -0800

    libgo: update Hurd support

    Patches from Svante Signell for PR go/104290.

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

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

* [Bug go/104290] [12 Regression] trunk 20220214 fails to build libgo on i686-gnu
  2022-01-30 13:38 [Bug go/104290] New: [12 Regression] trunk 20220126 fails to build libgo on i686-gnu doko at debian dot org
                   ` (23 preceding siblings ...)
  2022-02-18 23:33 ` [Bug go/104290] [12 Regression] trunk 20220214 " cvs-commit at gcc dot gnu.org
@ 2022-02-19  9:40 ` svante.signell at gmail dot com
  2022-02-20 20:15 ` ian at airs dot com
                   ` (9 subsequent siblings)
  34 siblings, 0 replies; 36+ messages in thread
From: svante.signell at gmail dot com @ 2022-02-19  9:40 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #24 from Svante Signell <svante.signell at gmail dot com> ---
Thanks Ian,

Hopefully someone knows hot to modify Makefile.tpl/Makefile.def to generate the
correct dependencies in Makefile.in.

Another patch that is not applied: gcc_config_gnu.h.diff. Who will commit that
patch? It is not directly relating to libgo, but gotools fails to build later
on without it.

Thanks!

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

* [Bug go/104290] [12 Regression] trunk 20220214 fails to build libgo on i686-gnu
  2022-01-30 13:38 [Bug go/104290] New: [12 Regression] trunk 20220126 fails to build libgo on i686-gnu doko at debian dot org
                   ` (24 preceding siblings ...)
  2022-02-19  9:40 ` svante.signell at gmail dot com
@ 2022-02-20 20:15 ` ian at airs dot com
  2022-02-21 16:05 ` svante.signell at gmail dot com
                   ` (8 subsequent siblings)
  34 siblings, 0 replies; 36+ messages in thread
From: ian at airs dot com @ 2022-02-20 20:15 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #25 from Ian Lance Taylor <ian at airs dot com> ---
> Hopefully someone knows hot to modify Makefile.tpl/Makefile.def to generate the correct dependencies in Makefile.in.

I suggest that you open a separate bug for that, with a complete standalone
explanation of the problem.  This bug is mixed in with a lot of other things.

> Another patch that is not applied: gcc_config_gnu.h.diff. Who will commit that patch? It is not directly relating to libgo, but gotools fails to build later on without it.

I assume you mean this patch:

https://gcc.gnu.org/bugzilla/attachment.cgi?id=52360&action=edit

I don't understand why that patch makes any difference.  Where is the code that
checks OPTION_GLIBC?

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

* [Bug go/104290] [12 Regression] trunk 20220214 fails to build libgo on i686-gnu
  2022-01-30 13:38 [Bug go/104290] New: [12 Regression] trunk 20220126 fails to build libgo on i686-gnu doko at debian dot org
                   ` (25 preceding siblings ...)
  2022-02-20 20:15 ` ian at airs dot com
@ 2022-02-21 16:05 ` svante.signell at gmail dot com
  2022-02-21 16:23 ` ian at airs dot com
                   ` (7 subsequent siblings)
  34 siblings, 0 replies; 36+ messages in thread
From: svante.signell at gmail dot com @ 2022-02-21 16:05 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #26 from Svante Signell <svante.signell at gmail dot com> ---
(In reply to Ian Lance Taylor from comment #25)
> > Hopefully someone knows hot to modify Makefile.tpl/Makefile.def to generate the correct dependencies in Makefile.in.
> 
> I suggest that you open a separate bug for that, with a complete standalone
> explanation of the problem.  This bug is mixed in with a lot of other things.

OK, will do.

> > Another patch that is not applied: gcc_config_gnu.h.diff. Who will commit that patch? It is not directly relating to libgo, but gotools fails to build later on without it.
> 
> I assume you mean this patch:
> 
> https://gcc.gnu.org/bugzilla/attachment.cgi?id=52360&action=edit

Yes!

> I don't understand why that patch makes any difference.  Where is the code
> that checks OPTION_GLIBC?

Pasted from Comment 1 and Comment 2:
start paste__________
Additionally, continuing, the build of gotools fails:
go1: error: '-fsplit-stack' currently only supported on GNU/Linux
go1: error: '-fsplit-stack' is not supported by this compiler configuration

The attached patch defines OPTION_GLIBC_P and OPTION_GLIBC that was lost for
config/gnu.h, thus enabling split-stack support for GNU/Hurd again. 

This problem happened with the latest commit and fixes for #104170 and as
discussed in the mail thread starting with
https://gcc.gnu.org/pipermail/gcc-patches/2022-January/588973.html.
end paste___________

The file first doing this check is: (first error: ..)
src/gcc/common/config/i386/i386-common.cc
in function:
static bool ix86_supports_split_stack (bool report,
            struct gcc_options *opts ATTRIBUTE_UNUSED)

and secondly in:src/gcc/opts.cc: (second error: ...)
in function:
void
finish_options (struct gcc_options *opts, struct gcc_options *opts_set,
                location_t loc)

The checking logic is in function ix86_supports_split_stack():
#if defined(TARGET_THREAD_SPLIT_STACK_OFFSET) && defined(OPTION_GLIBC_P)
  if (!OPTION_GLIBC_P (opts))
#endif
    {
      if (report)
        error ("%<-fsplit-stack%> currently only supported on GNU/Linux");
      return false;
    }

  bool ret = true;

In case of GNU/Hurd TARGET_THREAD_SPLIT_STACK_OFFSET is defined as well as
OPTION_GLIBC_P but OPTION_GLIBC_P (opts) is needed to. The proposed patch to
src/gcc/config/gnu.h creates that definition. Additionally, gnu.h is included
in the configure stage:
Configuring stage 1 in ./gcc
...
Using the following target machine macro files:
...
        ../../src/gcc/config/gnu.h

Thanks!

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

* [Bug go/104290] [12 Regression] trunk 20220214 fails to build libgo on i686-gnu
  2022-01-30 13:38 [Bug go/104290] New: [12 Regression] trunk 20220126 fails to build libgo on i686-gnu doko at debian dot org
                   ` (26 preceding siblings ...)
  2022-02-21 16:05 ` svante.signell at gmail dot com
@ 2022-02-21 16:23 ` ian at airs dot com
  2022-05-06  8:32 ` [Bug go/104290] [12/13 " jakub at gcc dot gnu.org
                   ` (6 subsequent siblings)
  34 siblings, 0 replies; 36+ messages in thread
From: ian at airs dot com @ 2022-02-21 16:23 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #27 from Ian Lance Taylor <ian at airs dot com> ---
Thanks for the explanation.  Sounds like you should send the config/gnu.h patch
to the x86 maintainers (and CC gcc-patches).

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

* [Bug go/104290] [12/13 Regression] trunk 20220214 fails to build libgo on i686-gnu
  2022-01-30 13:38 [Bug go/104290] New: [12 Regression] trunk 20220126 fails to build libgo on i686-gnu doko at debian dot org
                   ` (27 preceding siblings ...)
  2022-02-21 16:23 ` ian at airs dot com
@ 2022-05-06  8:32 ` jakub at gcc dot gnu.org
  2022-07-26 13:01 ` rguenth at gcc dot gnu.org
                   ` (5 subsequent siblings)
  34 siblings, 0 replies; 36+ messages in thread
From: jakub at gcc dot gnu.org @ 2022-05-06  8:32 UTC (permalink / raw)
  To: gcc-bugs

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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|12.0                        |12.2

--- Comment #28 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
GCC 12.1 is being released, retargeting bugs to GCC 12.2.

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

* [Bug go/104290] [12/13 Regression] trunk 20220214 fails to build libgo on i686-gnu
  2022-01-30 13:38 [Bug go/104290] New: [12 Regression] trunk 20220126 fails to build libgo on i686-gnu doko at debian dot org
                   ` (28 preceding siblings ...)
  2022-05-06  8:32 ` [Bug go/104290] [12/13 " jakub at gcc dot gnu.org
@ 2022-07-26 13:01 ` rguenth at gcc dot gnu.org
  2022-07-29  6:31 ` pinskia at gcc dot gnu.org
                   ` (4 subsequent siblings)
  34 siblings, 0 replies; 36+ messages in thread
From: rguenth at gcc dot gnu.org @ 2022-07-26 13:01 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #29 from Richard Biener <rguenth at gcc dot gnu.org> ---
What's the status here on the GCC 12 branch and trunk?

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

* [Bug go/104290] [12/13 Regression] trunk 20220214 fails to build libgo on i686-gnu
  2022-01-30 13:38 [Bug go/104290] New: [12 Regression] trunk 20220126 fails to build libgo on i686-gnu doko at debian dot org
                   ` (29 preceding siblings ...)
  2022-07-26 13:01 ` rguenth at gcc dot gnu.org
@ 2022-07-29  6:31 ` pinskia at gcc dot gnu.org
  2023-02-21 14:59 ` rguenth at gcc dot gnu.org
                   ` (3 subsequent siblings)
  34 siblings, 0 replies; 36+ messages in thread
From: pinskia at gcc dot gnu.org @ 2022-07-29  6:31 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #30 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
I suspect the libbacktrace issue is an issue with building in the source.

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

* [Bug go/104290] [12/13 Regression] trunk 20220214 fails to build libgo on i686-gnu
  2022-01-30 13:38 [Bug go/104290] New: [12 Regression] trunk 20220126 fails to build libgo on i686-gnu doko at debian dot org
                   ` (30 preceding siblings ...)
  2022-07-29  6:31 ` pinskia at gcc dot gnu.org
@ 2023-02-21 14:59 ` rguenth at gcc dot gnu.org
  2023-02-21 17:00 ` ian at airs dot com
                   ` (2 subsequent siblings)
  34 siblings, 0 replies; 36+ messages in thread
From: rguenth at gcc dot gnu.org @ 2023-02-21 14:59 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |WAITING
   Last reconfirmed|                            |2023-02-21
     Ever confirmed|0                           |1

--- Comment #32 from Richard Biener <rguenth at gcc dot gnu.org> ---
What's the status?

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

* [Bug go/104290] [12/13 Regression] trunk 20220214 fails to build libgo on i686-gnu
  2022-01-30 13:38 [Bug go/104290] New: [12 Regression] trunk 20220126 fails to build libgo on i686-gnu doko at debian dot org
                   ` (31 preceding siblings ...)
  2023-02-21 14:59 ` rguenth at gcc dot gnu.org
@ 2023-02-21 17:00 ` ian at airs dot com
  2023-03-15 16:27 ` svante.signell at gmail dot com
  2023-05-08 12:23 ` [Bug go/104290] [12/13/14 " rguenth at gcc dot gnu.org
  34 siblings, 0 replies; 36+ messages in thread
From: ian at airs dot com @ 2023-02-21 17:00 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #33 from Ian Lance Taylor <ian at airs dot com> ---
As far as I know nothing is waiting on me.  Please let me know if you think
otherwise.

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

* [Bug go/104290] [12/13 Regression] trunk 20220214 fails to build libgo on i686-gnu
  2022-01-30 13:38 [Bug go/104290] New: [12 Regression] trunk 20220126 fails to build libgo on i686-gnu doko at debian dot org
                   ` (32 preceding siblings ...)
  2023-02-21 17:00 ` ian at airs dot com
@ 2023-03-15 16:27 ` svante.signell at gmail dot com
  2023-05-08 12:23 ` [Bug go/104290] [12/13/14 " rguenth at gcc dot gnu.org
  34 siblings, 0 replies; 36+ messages in thread
From: svante.signell at gmail dot com @ 2023-03-15 16:27 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #34 from Svante Signell <svante.signell at gmail dot com> ---
This is incredible. Now Debian forgot to add the spilt-stack patch for GNU/Hurd
for gcc-13 (1:20230315-1). But it shouldn't be needed, it should have been
upstreamed a long time ago. The patch is from January 2022!

PS: I don't know how to change the title of this regression, it should now
read:
[12/13 Regression] trunk 20230315 fails to build libgo on i686-gnu

Thank you for your attention!

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

* [Bug go/104290] [12/13/14 Regression] trunk 20220214 fails to build libgo on i686-gnu
  2022-01-30 13:38 [Bug go/104290] New: [12 Regression] trunk 20220126 fails to build libgo on i686-gnu doko at debian dot org
                   ` (33 preceding siblings ...)
  2023-03-15 16:27 ` svante.signell at gmail dot com
@ 2023-05-08 12:23 ` rguenth at gcc dot gnu.org
  34 siblings, 0 replies; 36+ messages in thread
From: rguenth at gcc dot gnu.org @ 2023-05-08 12:23 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|12.3                        |12.4

--- Comment #35 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 12.3 is being released, retargeting bugs to GCC 12.4.

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

end of thread, other threads:[~2023-05-08 12:23 UTC | newest]

Thread overview: 36+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-30 13:38 [Bug go/104290] New: [12 Regression] trunk 20220126 fails to build libgo on i686-gnu doko at debian dot org
2022-01-31  8:21 ` [Bug go/104290] " rguenth at gcc dot gnu.org
2022-02-03 15:16 ` svante.signell at gmail dot com
2022-02-06 11:43 ` svante.signell at gmail dot com
2022-02-08 17:08 ` svante.signell at gmail dot com
2022-02-08 17:29 ` schwab@linux-m68k.org
2022-02-08 17:50 ` ian at airs dot com
2022-02-08 19:37 ` svante.signell at gmail dot com
2022-02-08 19:44 ` schwab@linux-m68k.org
2022-02-09 22:11 ` svante.signell at gmail dot com
2022-02-17 17:30 ` cvs-commit at gcc dot gnu.org
2022-02-17 22:20 ` svante.signell at gmail dot com
2022-02-17 22:21 ` svante.signell at gmail dot com
2022-02-17 22:22 ` svante.signell at gmail dot com
2022-02-17 22:23 ` svante.signell at gmail dot com
2022-02-17 22:23 ` svante.signell at gmail dot com
2022-02-17 22:24 ` svante.signell at gmail dot com
2022-02-17 22:25 ` svante.signell at gmail dot com
2022-02-17 22:25 ` svante.signell at gmail dot com
2022-02-17 22:26 ` svante.signell at gmail dot com
2022-02-17 22:41 ` svante.signell at gmail dot com
2022-02-17 22:45 ` svante.signell at gmail dot com
2022-02-18 18:28 ` ian at airs dot com
2022-02-18 22:57 ` ian at airs dot com
2022-02-18 23:33 ` [Bug go/104290] [12 Regression] trunk 20220214 " cvs-commit at gcc dot gnu.org
2022-02-19  9:40 ` svante.signell at gmail dot com
2022-02-20 20:15 ` ian at airs dot com
2022-02-21 16:05 ` svante.signell at gmail dot com
2022-02-21 16:23 ` ian at airs dot com
2022-05-06  8:32 ` [Bug go/104290] [12/13 " jakub at gcc dot gnu.org
2022-07-26 13:01 ` rguenth at gcc dot gnu.org
2022-07-29  6:31 ` pinskia at gcc dot gnu.org
2023-02-21 14:59 ` rguenth at gcc dot gnu.org
2023-02-21 17:00 ` ian at airs dot com
2023-03-15 16:27 ` svante.signell at gmail dot com
2023-05-08 12:23 ` [Bug go/104290] [12/13/14 " rguenth at gcc dot gnu.org

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