From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Arash Esbati Newsgroups: gmane.emacs.devel Subject: GCC 13.1: Can't build Emacs with Msys2/MinGW64 Date: Sun, 07 May 2023 16:31:56 +0200 Message-ID: <86r0rs8b6r.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="39599"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) To: emacs-devel Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Sun May 07 16:33:07 2023 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1pvfRi-000A3r-28 for ged-emacs-devel@m.gmane-mx.org; Sun, 07 May 2023 16:33:06 +0200 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1pvfQp-00032L-IS; Sun, 07 May 2023 10:32:11 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pvfQo-00031y-7B for emacs-devel@gnu.org; Sun, 07 May 2023 10:32:10 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pvfQn-00006F-Rw for emacs-devel@gnu.org; Sun, 07 May 2023 10:32:09 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:Subject:To:From:in-reply-to: references; bh=YnpTCn4npC6R/CN3hn8uqA75qeDkPggsiV02D5+unBw=; b=H3GbhlSDWWUD1u itJl0I3qBSMhQfjCXyqbtCnZ2nhhOBLM76p2p6HD3Dh+2dS/vvMXLscg7FfCxaGdlwhr1n1s/7uiz GpDuVkWm8O+JjFKuIa3ug1aia5eitgVPUzLf9xoLl5J6gVCaFkAGnDs+EOPSYxkuv5vEOCQNKfQKG 7dMqnHR61UvDCoLENunJoUaUEaZI/nILuXYYHRipqq0Sawwws3nIiLTbeIdNsP9zjUzsq2tKPrNPl mjFCa9kVbnM9DD89IVoPAca0qA+IWYbOO+6HIaG/aOB6gWaqUQVO9x4pE06LyCKAUmEcDZ2T8KYrl HgI55MR5CvG09k3dCqIw==; Original-Received: from pd9fb7539.dip0.t-ipconnect.de ([217.251.117.57] helo=MUTANT) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pvfQn-0008TW-Dr for emacs-devel@gnu.org; Sun, 07 May 2023 10:32:09 -0400 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.devel:305955 Archived-At: Hi all, GCC 13.1 landed on my HD and I can't build Emacs (both release branch and master) anymore. This happens only when I pass --with-native-compilation to configure. In summary: $ git clean -fdx --exclude=ChangeLog $ ./autogen.sh $ ./configure --without-native-compilation $ make works and $ git clean -fdx --exclude=ChangeLog $ ./autogen.sh $ ./configure --with-native-compilation $ make breaks during compilation with ELC dired.elc ELC dired-aux.elc ELC dired-loaddefs.elc ELC dired-x.elc Backtrace: 00007ff7de14a69e 00007ff7de018b21 00007ff7de039541 00007ff7de1aedaa 00007ff9b7977ff0 00007ff9b81b23d7 00007ff9b816149c 00007ff9b81b0f06 00007ff7de09ea80 ... make[3]: *** [Makefile:327: dired-x.elc] Error 3 and others warnings like the above. Before digging more into it and possibly filing a bug report, do others observe the same issue? This is on Win10 with Msys2/MinGW64, gcc.exe (Rev4, Built by MSYS2 project) 13.1.0. Best, Arash