From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 379233858D35; Sat, 17 Jun 2023 09:52:45 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 379233858D35 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1686995565; bh=Q2g3k0QIYjegdrzDWsWn8XX75d4gQgduUvvWyqJSD24=; h=From:To:Subject:Date:From; b=MBu7M3Z5ZYhPsr9H8aQjN9fdXJaJzL9PKSKj68pzwk7ZuR6qBbjUC6MFZ3r2nsFj6 8NSo9JDBQ/17THYXSzvauhnbNPvbUexZTVh+29DcFHnflPRnjTdS7SgpYDYADO0NUy 1P5ug2ftVBSUoaTp5/uCl/v4PebdEa0xV/jAvURw= From: "doko at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug go/110297] New: [13/14 Regression] all libgo tests fail on arm-linux-gnueabi and arm-linxu-gnueabihf Date: Sat, 17 Jun 2023 09:52:44 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: go X-Bugzilla-Version: 13.1.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: doko at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ian at airs dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D110297 Bug ID: 110297 Summary: [13/14 Regression] all libgo tests fail on arm-linux-gnueabi and arm-linxu-gnueabihf Product: gcc Version: 13.1.1 Status: UNCONFIRMED Severity: normal Priority: P3 Component: go Assignee: ian at airs dot com Reporter: doko at gcc dot gnu.org Target Milestone: --- seen on the gcc-13 branch 20230611 on arm-linux-gnueabi and arm-linux-gnueabihf: and all libgo tests fail on ARM32, both on the gcc-13 branch and the trunk. [...] fatal error: runtime: cannot allocate memory runtime stack: runtime.dopanic__m ../../../src/libgo/go/runtime/panic.go:1207 runtime.fatalthrow ../../../src/libgo/go/runtime/panic.go:1073 runtime.throw ../../../src/libgo/go/runtime/panic.go:1044 runtime.persistentalloc1 ../../../src/libgo/go/runtime/malloc.go:1475 runtime.persistentalloc..func1 ../../../src/libgo/go/runtime/malloc.go:1429 runtime.systemstack ../../../src/libgo/go/runtime/stubs.go:61 runtime.persistentalloc ../../../src/libgo/go/runtime/malloc.go:1428 runtime.addrRanges.init ../../../src/libgo/go/runtime/mranges.go:170 runtime.pageAlloc.init ../../../src/libgo/go/runtime/mpagealloc.go:330 runtime.mheap.init ../../../src/libgo/go/runtime/mheap.go:723 runtime.mallocinit ../../../src/libgo/go/runtime/malloc.go:497 runtime.schedinit ../../../src/libgo/go/runtime/proc.go:681 :0 :0 __libc_start_main :0 that's from a simple check: GO=3Dgo-13 WORKDIR=3D$(mktemp -d) trap "rm -rf $WORKDIR" 0 INT QUIT ABRT PIPE TERM cd $WORKDIR cat < hello.go package main import "fmt" func main() { fmt.Println("hello world") } EOF $GO run hello.go $GO build hello.go echo "build: OK" ldd hello [ -x hello ] ./hello echo "run: OK"=