From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) Subject: bug#31708: 'gcc-strmov-store-file-names.patch' causes GCC segfaults Date: Wed, 06 Jun 2018 15:29:52 +0200 Message-ID: <877encjb5b.fsf@gnu.org> References: <87k1reuc4r.fsf@gnu.org> <87sh623v4a.fsf@netris.org> <87602w3m8k.fsf@netris.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33201) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fQYWr-0000oE-Lu for bug-guix@gnu.org; Wed, 06 Jun 2018 09:31:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fQYWm-00029G-OD for bug-guix@gnu.org; Wed, 06 Jun 2018 09:31:09 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:56363) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fQYWm-000296-LC for bug-guix@gnu.org; Wed, 06 Jun 2018 09:31:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fQYWk-0003bW-6B for bug-guix@gnu.org; Wed, 06 Jun 2018 09:31:04 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <87602w3m8k.fsf@netris.org> (Mark H. Weaver's message of "Tue, 05 Jun 2018 18:24:43 -0400") List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: Mark H Weaver Cc: 31708@debbugs.gnu.org Hi Mark, Mark H Weaver skribis: > Mark H Weaver writes: > >> Here's the declaration of QChar::byteOrderMark from qtools/qstring.h, >> included in the doxygen tarball: >> >> class Q_EXPORT Q_PACKED QChar { >> public: >> QChar(); >> QChar( char c ); >> QChar( uchar c ); >> QChar( uchar c, uchar r ); >> QChar( const QChar& c ); >> QChar( ushort rc ); >> QChar( short rc ); >> QChar( uint rc ); >> QChar( int rc ); >> >> QT_STATIC_CONST QChar null; // 0000 >> QT_STATIC_CONST QChar replacement; // FFFD >> QT_STATIC_CONST QChar byteOrderMark; // FEFF >> QT_STATIC_CONST QChar byteOrderSwapped; // FFFE >> QT_STATIC_CONST QChar nbsp; // 00A0 >> >> and here's its definition, from qtools/qstring.cpp line 12179: >> >> QT_STATIC_CONST_IMPL QChar QChar::byteOrderMark((ushort)0xfeff); >> >> Any suggestions? I've managed to avoid working with C++ so far in this >> millenium, so I'm a bit rusty. > > If some of these cases are difficult to work around, one option would be > to add a new 'gcc-final/fixed' package or similar, with this bug fixed, > and we could then add it as a 'native-input' to selected packages where > it's needed, e.g. doxygen on armhf. We could do that, though that means one more GCC to build, which isn=E2=80= =99t great. If there are few ICEs, maybe we can just fix them individually. Ludo=E2=80=99.