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: Fri, 08 Jun 2018 15:26:12 +0200 Message-ID: <87o9glmmtn.fsf@gnu.org> References: <87k1reuc4r.fsf@gnu.org> <87sh623v4a.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]:33722) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fRHQ4-0004DN-Gk for bug-guix@gnu.org; Fri, 08 Jun 2018 09:27:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fRHPz-0007yZ-Ea for bug-guix@gnu.org; Fri, 08 Jun 2018 09:27:08 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:59276) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fRHPz-0007yV-AK for bug-guix@gnu.org; Fri, 08 Jun 2018 09:27:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fRHPz-0003q4-3I for bug-guix@gnu.org; Fri, 08 Jun 2018 09:27:03 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <87sh623v4a.fsf@netris.org> (Mark H. Weaver's message of "Mon, 04 Jun 2018 21:00:37 -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: > At the moment, the most pressing failure caused by this bug is 'doxygen' > on armhf, which causes GCC to crash deterministically in the same place > every time, with many important dependency failures. Fixed very elegantly in commit 849a1399ca46497ad6acc5b11903f345502c02de. The fact that it=E2=80=99s C++ makes things a little bit more complicated, = and it makes the bug a little bit more likely to trigger (because in C++ you can have declarations of =E2=80=98static const=E2=80=99 things, and a decla= ration doesn=E2=80=99t have an initializer, hence the NULL pointer dereference.) Thanks for the heads-up, Ludo=E2=80=99.