From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: Merging native-comp and pgtk Date: Sat, 13 Feb 2021 11:20:55 +0200 Message-ID: <835z2we32g.fsf@gnu.org> References: <07D5E64D-DAD0-45B3-B272-627A73D7CBAE@gmail.com> <87sg6alweo.fsf@gnus.org> <87pn1erewq.fsf@gmail.com> <87wnvlecrw.fsf@gnus.org> <83sg69o3av.fsf@gnu.org> <87mtwhctte.fsf@gnus.org> <459A0475-E3E7-4159-82DF-93809CCF1E24@gmail.com> <87eehng52n.fsf@gnus.org> <87mtwbye5b.fsf@gmail.com> <87czx7ycva.fsf@tcd.ie> <87eehmyalr.fsf@gmail.com> <877dneoewi.fsf@tcd.ie> <875z2yy6z7.fsf@gmail.com> <878s7twq2t.fsf@gmail.com> <84adc238-c424-bb6b-da28-c4232172da5b@gmx.at> <83wnvddtgh.fsf@gnu.org> <86k0rc2a44.fsf@gmail.com> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="5313"; mail-complaints-to="usenet@ciao.gmane.io" Cc: emacs-devel@gnu.org To: Andy Moreton Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Sat Feb 13 10:21:36 2021 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 1lAr7P-0001H9-VV for ged-emacs-devel@m.gmane-mx.org; Sat, 13 Feb 2021 10:21:35 +0100 Original-Received: from localhost ([::1]:56666 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lAr7P-0008Cd-2B for ged-emacs-devel@m.gmane-mx.org; Sat, 13 Feb 2021 04:21:35 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:38356) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lAr6p-0007kT-L3 for emacs-devel@gnu.org; Sat, 13 Feb 2021 04:20:59 -0500 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]:45879) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lAr6p-00009l-Dh; Sat, 13 Feb 2021 04:20:59 -0500 Original-Received: from 84.94.185.95.cable.012.net.il ([84.94.185.95]:3060 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1lAr6o-0007El-TU; Sat, 13 Feb 2021 04:20:59 -0500 In-Reply-To: <86k0rc2a44.fsf@gmail.com> (message from Andy Moreton on Fri, 12 Feb 2021 22:29:31 +0000) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.23 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" Xref: news.gmane.io gmane.emacs.devel:264584 Archived-At: > From: Andy Moreton > Date: Fri, 12 Feb 2021 22:29:31 +0000 > > - The async background compile and intrusive warnings are intrusive and > make emacs unresponsive to user input. The async background compile > is difficult to control (other than disabling completely), or to see > which files are still in the queue to be compiled. Did you report the problems with the warnings? If not, please report them to the bug tracker. > - The dependencies for building .eln files do not work. If the .elc > file for a .el file exists, the .eln will not be built (even if the > .eln does not exist). Was this reported as a bug? > On mingw64 32bit configured with "--wide": > > - the build fails: bootstrap-emacs.exe crashes when compiling lisp). > gdb does not produce anything informative in the backtrace. > > - the "--wide" configure flag affects ABI, so should be included in the > native-comp ABI hash identifier in .eln filenames. Andrea, did you try a 32-bit build --with-wide-int? Did it work for you? > As a pre-existing problem (present in master), the .elc files are built > in the source tree, rather than the build tree. That prevents doing > out-of-tree builds for different platforms/ABIs from the same source > tree. Yes, we don't yet fully support out-of-tree builds, and that's unrelated to the native-comp branch. Thanks.