From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 093C33858C1F; Wed, 22 Mar 2023 17:03:57 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 093C33858C1F DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1679504637; bh=XMoSPR2A55WszHPI0gHEAXChBgq8LYeZ/uyvbTOJwoc=; h=From:To:Subject:Date:In-Reply-To:References:From; b=PAkDJGtZtP9o95Mx89/xaqAYxtAWiWz/xQen8b4EHy/YUZ2DmMwGCgph75mJoHb4o er7yvpKo/T3rj+g/wAWEthuxjTDQS0Q4gKyB10Y3DsqZttmzbc94wHtcojvpYkch1x TQaapxuJxvoyQ9iGaa/htNljOVdBr8trBFMKcUeA= From: "ro at CeBiTec dot Uni-Bielefeld.DE" To: gcc-bugs@gcc.gnu.org Subject: [Bug d/109231] [13 regression] Comparison failure in libphobos/libdruntime/rt/util/typeinfo.o Date: Wed, 22 Mar 2023 17:03:56 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: d X-Bugzilla-Version: 13.0 X-Bugzilla-Keywords: build X-Bugzilla-Severity: normal X-Bugzilla-Who: ro at CeBiTec dot Uni-Bielefeld.DE X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ibuclaw at gdcproject dot org X-Bugzilla-Target-Milestone: 13.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: 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=3D109231 --- Comment #14 from ro at CeBiTec dot Uni-Bielefeld.DE --- > --- Comment #13 from Jakub Jelinek --- > I found I could perhaps use gcc211 on CompilerFarm to try to reproduce it, > currently building GCC 11 for working GDC there. Right, although on Solaris/SPARC GCC 9.3.0 works for me, too. > What exact configure should I use for the trunk gcc? During the reghunt, I used (albeit on Solaris 11.4) configure --without-ppl --without-cloog --enable-languages=3Dd --disable-lto --disable-libatomic --disable-libcc1 --disable-libquadmath --disable-libssp --disable-libitm --disable-libvtv --disable-libsanitizer --disable-libgomp --with-ld=3D/usr/bin/ld --without-gnu-ld --with-as=3D/vol/gcc/bin/gas-2.40 --with-gnu-as --disable-multilib All the --disable-* options serve to speed up the build, including --disable-multilib. I'd strongly recommend using /bin/ld; that's what I've been using all the time. > For gcc 11 I'm trying > ../configure --prefix=3D/export/home/jakub/gcc-11-inst --enable-languages= =3Dc,c++,d > --disable-libssp --disable-nls --enable-threads=3Dposix --with-gmp=3D/opt= /csw > --with-included-gettext --with-ld=3D/opt/csw/bin/gld --with-gnu-ld > --with-as=3D/opt/csw/bin/gas --with-gnu-as --with-libiconv-prefix=3D/opt/= csw > --with-mpfr=3D/opt/csw --with-system-zlib=3D/opt/csw --enable-libphobos > --disable-bootstrap I don't think you need the explicit --enable-threads=3Dposix --with-included-gettext; likewise I didn't have any need for --with-system-zlib=3D/opt/csw or similar. I've been working with a self-compiled gas 2.40; I'm uncertain if the /opt/csw one is ok, but guess so. You'll certainly need gmp/mpfr/mpc from /opt/csw; at least for one of the three the bundled version is too old on 11.3.=