From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Andrea Corallo via "Emacs development discussions." Newsgroups: gmane.emacs.devel Subject: Re: The emacs-28 release branch has been created Date: Mon, 04 Oct 2021 16:15:35 +0000 Message-ID: References: <83lf3dgbl3.fsf@gnu.org> <6c7a9f1a-bf2d-4213-b954-2025eee1f282@cornell.edu> <838rzaa264.fsf@gnu.org> <2434455f-34f5-3e6b-b26f-db7b66cf8f3d@cornell.edu> <83ee9287ef.fsf@gnu.org> <83a6jq84wu.fsf@gnu.org> <10401c4a-1d0a-817c-942e-f08ab3130552@cornell.edu> <834k9y814j.fsf@gnu.org> <83tuhx7w54.fsf@gnu.org> <30b78a17-2b95-5d0c-fb46-10c37ee91638@cornell.edu> <96912815-d275-8b54-9ba8-cc4fd5b0fe91@cornell.edu> <83v92c6f4n.fsf@gnu.org> <83sfxg6ehc.fsf@gnu.org> <83r1d06dry.fsf@gnu.org> Reply-To: Andrea Corallo Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="11348"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) Cc: kbrown@cornell.edu, emacs-devel@gnu.org To: Eli Zaretskii Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Mon Oct 04 18:17:05 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 1mXQeG-0002Z3-Mg for ged-emacs-devel@m.gmane-mx.org; Mon, 04 Oct 2021 18:17:04 +0200 Original-Received: from localhost ([::1]:46944 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1mXQeF-00032J-2h for ged-emacs-devel@m.gmane-mx.org; Mon, 04 Oct 2021 12:17:03 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:51326) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mXQcw-0001MA-2T for emacs-devel@gnu.org; Mon, 04 Oct 2021 12:15:44 -0400 Original-Received: from mx.sdf.org ([205.166.94.24]:49352) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mXQct-0006fU-UO; Mon, 04 Oct 2021 12:15:41 -0400 Original-Received: from ma.sdf.org (ma.sdf.org [205.166.94.33]) by mx.sdf.org (8.15.2/8.14.5) with ESMTPS id 194GFZOt005755 (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256 bits) verified NO); Mon, 4 Oct 2021 16:15:35 GMT In-Reply-To: <83r1d06dry.fsf@gnu.org> (Eli Zaretskii's message of "Mon, 04 Oct 2021 17:54:57 +0300") Received-SPF: pass client-ip=205.166.94.24; envelope-from=akrl@sdf.org; helo=mx.sdf.org X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action 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:276222 Archived-At: Eli Zaretskii writes: >> Cc: kbrown@cornell.edu, emacs-devel@gnu.org >> Date: Mon, 04 Oct 2021 14:45:21 +0000 >> From: Andrea Corallo via "Emacs development discussions." >> >> thanks for the reduced reproducer, I will start having a look this >> evening. > > Thanks. To clarify: this is in the emacs-28 branch, not on master > (although on master things should be very similar for now). > Okay I see what's the issue. In `comp-final' we spawn a child process to run the final pass or not discriminating on the `byte+native-compile' var. This is wrong cause this is not bound when using `batch-native-compile'. When spawning the sub-process we print the limple dump in a file and this gets in this case truncated (still to be understood why) leading to the error. Will come with patch after dinner. BR Andrea