public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug go/98496] New: [11 Regression] bootstrap broken in libgo on i686-gnu
@ 2021-01-01 18:33 doko at debian dot org
  2021-01-01 23:16 ` [Bug go/98496] " ian at airs dot com
                   ` (15 more replies)
  0 siblings, 16 replies; 17+ messages in thread
From: doko at debian dot org @ 2021-01-01 18:33 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 98496
           Summary: [11 Regression] bootstrap broken in libgo 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: ---

seen with trunk 20210101

../../../src/libgo/go/runtime/os_gccgo.go:43:12: error: reference to undefined
name 'startupRandomData'
   43 |         if startupRandomData != nil {
      |            ^
../../../src/libgo/go/runtime/os_gccgo.go:44:30: error: reference to undefined
name 'startupRandomData'
   44 |                 n := copy(r, startupRandomData)
      |                              ^
Makefile:2962: recipe for target 'runtime.lo' failed

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

* [Bug go/98496] [11 Regression] bootstrap broken in libgo on i686-gnu
  2021-01-01 18:33 [Bug go/98496] New: [11 Regression] bootstrap broken in libgo on i686-gnu doko at debian dot org
@ 2021-01-01 23:16 ` ian at airs dot com
  2021-01-02 17:49 ` doko at debian dot org
                   ` (14 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: ian at airs dot com @ 2021-01-01 23:16 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

--- Comment #1 from Ian Lance Taylor <ian at airs dot com> ---
This should be fixed now.

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

* [Bug go/98496] [11 Regression] bootstrap broken in libgo on i686-gnu
  2021-01-01 18:33 [Bug go/98496] New: [11 Regression] bootstrap broken in libgo on i686-gnu doko at debian dot org
  2021-01-01 23:16 ` [Bug go/98496] " ian at airs dot com
@ 2021-01-02 17:49 ` doko at debian dot org
  2021-01-02 18:09 ` svante.signell at gmail dot com
                   ` (13 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: doko at debian dot org @ 2021-01-02 17:49 UTC (permalink / raw)
  To: gcc-bugs

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

Matthias Klose <doko at debian dot org> changed:

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

--- Comment #2 from Matthias Klose <doko at debian dot org> ---
now fails with:

../../../src/libgo/go/crypto/x509/root_unix.go:52:17: error: reference to
undefined name 'certDirectories'
   52 |         dirs := certDirectories
      |                 ^
../../../src/libgo/go/crypto/x509/root_unix.go:61:9: error: range clause must
have array, slice, string, map, or channel type
   61 |         for _, directory := range dirs {
      |         ^
../../../src/libgo/go/crypto/x509/root_unix.go:61:13: error: invalid type for
range clause
   61 |         for _, directory := range dirs {
      |             ^
Makefile:2962: recipe for target 'crypto/x509.lo' failed
make[6]: *** [crypto/x509.lo] Error 1

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

* [Bug go/98496] [11 Regression] bootstrap broken in libgo on i686-gnu
  2021-01-01 18:33 [Bug go/98496] New: [11 Regression] bootstrap broken in libgo on i686-gnu doko at debian dot org
  2021-01-01 23:16 ` [Bug go/98496] " ian at airs dot com
  2021-01-02 17:49 ` doko at debian dot org
@ 2021-01-02 18:09 ` svante.signell at gmail dot com
  2021-01-05 10:55 ` rguenth at gcc dot gnu.org
                   ` (12 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: svante.signell at gmail dot com @ 2021-01-02 18:09 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #3 from Svante Signell <svante.signell at gmail dot com> ---
On Sat, 2021-01-02 at 17:49 +0000, doko at debian dot org wrote:
> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=98496
> 
> Matthias Klose <doko at debian dot org> changed:
> 
>            What    |Removed                     |Added
> -------------------------------------------------------------------
> ---------
>              Status|RESOLVED                    |UNCONFIRMED
>          Resolution|FIXED                       |---
> 
> --- Comment #2 from Matthias Klose <doko at debian dot org> ---
> now fails with:
> 
> ../../../src/libgo/go/crypto/x509/root_unix.go:52:17: error:
> reference to
> undefined name 'certDirectories'
>    52 |         dirs := certDirectories
>       |                 ^

I'm onto it. Patch will follow soon. A simple fix if this is the only
issue.

Thanks!

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

* [Bug go/98496] [11 Regression] bootstrap broken in libgo on i686-gnu
  2021-01-01 18:33 [Bug go/98496] New: [11 Regression] bootstrap broken in libgo on i686-gnu doko at debian dot org
                   ` (2 preceding siblings ...)
  2021-01-02 18:09 ` svante.signell at gmail dot com
@ 2021-01-05 10:55 ` rguenth at gcc dot gnu.org
  2021-01-10 16:12 ` svante.signell at gmail dot com
                   ` (11 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: rguenth at gcc dot gnu.org @ 2021-01-05 10:55 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

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

* [Bug go/98496] [11 Regression] bootstrap broken in libgo on i686-gnu
  2021-01-01 18:33 [Bug go/98496] New: [11 Regression] bootstrap broken in libgo on i686-gnu doko at debian dot org
                   ` (3 preceding siblings ...)
  2021-01-05 10:55 ` rguenth at gcc dot gnu.org
@ 2021-01-10 16:12 ` svante.signell at gmail dot com
  2021-01-10 16:13 ` svante.signell at gmail dot com
                   ` (10 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: svante.signell at gmail dot com @ 2021-01-10 16:12 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

* [Bug go/98496] [11 Regression] bootstrap broken in libgo on i686-gnu
  2021-01-01 18:33 [Bug go/98496] New: [11 Regression] bootstrap broken in libgo on i686-gnu doko at debian dot org
                   ` (4 preceding siblings ...)
  2021-01-10 16:12 ` svante.signell at gmail dot com
@ 2021-01-10 16:13 ` svante.signell at gmail dot com
  2021-01-10 16:14 ` svante.signell at gmail dot com
                   ` (9 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: svante.signell at gmail dot com @ 2021-01-10 16:13 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

* [Bug go/98496] [11 Regression] bootstrap broken in libgo on i686-gnu
  2021-01-01 18:33 [Bug go/98496] New: [11 Regression] bootstrap broken in libgo on i686-gnu doko at debian dot org
                   ` (5 preceding siblings ...)
  2021-01-10 16:13 ` svante.signell at gmail dot com
@ 2021-01-10 16:14 ` svante.signell at gmail dot com
  2021-01-10 16:14 ` svante.signell at gmail dot com
                   ` (8 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: svante.signell at gmail dot com @ 2021-01-10 16:14 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

* [Bug go/98496] [11 Regression] bootstrap broken in libgo on i686-gnu
  2021-01-01 18:33 [Bug go/98496] New: [11 Regression] bootstrap broken in libgo on i686-gnu doko at debian dot org
                   ` (6 preceding siblings ...)
  2021-01-10 16:14 ` svante.signell at gmail dot com
@ 2021-01-10 16:14 ` svante.signell at gmail dot com
  2021-01-10 16:14 ` svante.signell at gmail dot com
                   ` (7 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: svante.signell at gmail dot com @ 2021-01-10 16:14 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

* [Bug go/98496] [11 Regression] bootstrap broken in libgo on i686-gnu
  2021-01-01 18:33 [Bug go/98496] New: [11 Regression] bootstrap broken in libgo on i686-gnu doko at debian dot org
                   ` (7 preceding siblings ...)
  2021-01-10 16:14 ` svante.signell at gmail dot com
@ 2021-01-10 16:14 ` svante.signell at gmail dot com
  2021-01-10 16:15 ` svante.signell at gmail dot com
                   ` (6 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: svante.signell at gmail dot com @ 2021-01-10 16:14 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

* [Bug go/98496] [11 Regression] bootstrap broken in libgo on i686-gnu
  2021-01-01 18:33 [Bug go/98496] New: [11 Regression] bootstrap broken in libgo on i686-gnu doko at debian dot org
                   ` (8 preceding siblings ...)
  2021-01-10 16:14 ` svante.signell at gmail dot com
@ 2021-01-10 16:15 ` svante.signell at gmail dot com
  2021-01-10 16:34 ` svante.signell at gmail dot com
                   ` (5 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: svante.signell at gmail dot com @ 2021-01-10 16:15 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

* [Bug go/98496] [11 Regression] bootstrap broken in libgo on i686-gnu
  2021-01-01 18:33 [Bug go/98496] New: [11 Regression] bootstrap broken in libgo on i686-gnu doko at debian dot org
                   ` (9 preceding siblings ...)
  2021-01-10 16:15 ` svante.signell at gmail dot com
@ 2021-01-10 16:34 ` svante.signell at gmail dot com
  2021-01-13 14:00 ` svante.signell at gmail dot com
                   ` (4 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: svante.signell at gmail dot com @ 2021-01-10 16:34 UTC (permalink / raw)
  To: gcc-bugs

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

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

The 6 attached patches are improving the build and tests of gccgo for Hurd.
Attachment 49931 is needed for libgo to build, while the other are improving
the tests of libgo,go and gotools. Attachment 49934 if just a cosmetic change
of os_hurd.go.

Further changes are still needed to the Makefiles of libgo and gotools to
enable proper linking of libpthread and libdl. The dynamic linking of extra
libraries does not work automatically as it does on Linux systems.

Thanks!

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

* [Bug go/98496] [11 Regression] bootstrap broken in libgo on i686-gnu
  2021-01-01 18:33 [Bug go/98496] New: [11 Regression] bootstrap broken in libgo on i686-gnu doko at debian dot org
                   ` (10 preceding siblings ...)
  2021-01-10 16:34 ` svante.signell at gmail dot com
@ 2021-01-13 14:00 ` svante.signell at gmail dot com
  2021-01-14 11:15 ` rguenth at gcc dot gnu.org
                   ` (3 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: svante.signell at gmail dot com @ 2021-01-13 14:00 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #11 from Svante Signell <svante.signell at gmail dot com> ---
ping?

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

* [Bug go/98496] [11 Regression] bootstrap broken in libgo on i686-gnu
  2021-01-01 18:33 [Bug go/98496] New: [11 Regression] bootstrap broken in libgo on i686-gnu doko at debian dot org
                   ` (11 preceding siblings ...)
  2021-01-13 14:00 ` svante.signell at gmail dot com
@ 2021-01-14 11:15 ` rguenth at gcc dot gnu.org
  2021-01-14 17:22 ` ian at airs dot com
                   ` (2 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: rguenth at gcc dot gnu.org @ 2021-01-14 11:15 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P1

--- Comment #12 from Richard Biener <rguenth at gcc dot gnu.org> ---
patches need to be posted to gcc-patches@gcc.gnu.org

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

* [Bug go/98496] [11 Regression] bootstrap broken in libgo on i686-gnu
  2021-01-01 18:33 [Bug go/98496] New: [11 Regression] bootstrap broken in libgo on i686-gnu doko at debian dot org
                   ` (12 preceding siblings ...)
  2021-01-14 11:15 ` rguenth at gcc dot gnu.org
@ 2021-01-14 17:22 ` ian at airs dot com
  2021-01-14 17:57 ` cvs-commit at gcc dot gnu.org
  2021-01-14 18:47 ` ian at airs dot com
  15 siblings, 0 replies; 17+ messages in thread
From: ian at airs dot com @ 2021-01-14 17:22 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #13 from Ian Lance Taylor <ian at airs dot com> ---
In this case I've already sent the change out for review at
https://golang.org/cl/283692 and they should go in today (as before, this
process would go faster if you were able to send changes using Gerrit).

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

* [Bug go/98496] [11 Regression] bootstrap broken in libgo on i686-gnu
  2021-01-01 18:33 [Bug go/98496] New: [11 Regression] bootstrap broken in libgo on i686-gnu doko at debian dot org
                   ` (13 preceding siblings ...)
  2021-01-14 17:22 ` ian at airs dot com
@ 2021-01-14 17:57 ` cvs-commit at gcc dot gnu.org
  2021-01-14 18:47 ` ian at airs dot com
  15 siblings, 0 replies; 17+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2021-01-14 17:57 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #14 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:9ac3e2feb3da89eda7a783d2c675ec897e81b338

commit r11-6678-g9ac3e2feb3da89eda7a783d2c675ec897e81b338
Author: Ian Lance Taylor <iant@golang.org>
Date:   Wed Jan 13 11:54:15 2021 -0800

    libgo: update hurd support

    Patch from Svante Signell.

    Fixes PR go/98496

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

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

* [Bug go/98496] [11 Regression] bootstrap broken in libgo on i686-gnu
  2021-01-01 18:33 [Bug go/98496] New: [11 Regression] bootstrap broken in libgo on i686-gnu doko at debian dot org
                   ` (14 preceding siblings ...)
  2021-01-14 17:57 ` cvs-commit at gcc dot gnu.org
@ 2021-01-14 18:47 ` ian at airs dot com
  15 siblings, 0 replies; 17+ messages in thread
From: ian at airs dot com @ 2021-01-14 18:47 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

--- Comment #15 from Ian Lance Taylor <ian at airs dot com> ---
Should be fixed.

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

end of thread, other threads:[~2021-01-14 18:47 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-01 18:33 [Bug go/98496] New: [11 Regression] bootstrap broken in libgo on i686-gnu doko at debian dot org
2021-01-01 23:16 ` [Bug go/98496] " ian at airs dot com
2021-01-02 17:49 ` doko at debian dot org
2021-01-02 18:09 ` svante.signell at gmail dot com
2021-01-05 10:55 ` rguenth at gcc dot gnu.org
2021-01-10 16:12 ` svante.signell at gmail dot com
2021-01-10 16:13 ` svante.signell at gmail dot com
2021-01-10 16:14 ` svante.signell at gmail dot com
2021-01-10 16:14 ` svante.signell at gmail dot com
2021-01-10 16:14 ` svante.signell at gmail dot com
2021-01-10 16:15 ` svante.signell at gmail dot com
2021-01-10 16:34 ` svante.signell at gmail dot com
2021-01-13 14:00 ` svante.signell at gmail dot com
2021-01-14 11:15 ` rguenth at gcc dot gnu.org
2021-01-14 17:22 ` ian at airs dot com
2021-01-14 17:57 ` cvs-commit at gcc dot gnu.org
2021-01-14 18:47 ` 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).