From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Andrea Corallo Newsgroups: gmane.emacs.devel Subject: Re: make check produces 25 failures and hangs (bug #65176). Date: Mon, 14 Aug 2023 09:38:28 -0400 Message-ID: References: <9e9bf73a-f7e8-24e2-bd3f-5f4e86baa65e@vodafonemail.de> <83zg2ygmwu.fsf@gnu.org> <7f5635a2-c2bc-b90b-35b9-7c6a07822dae@vodafonemail.de> <838rafcfhc.fsf@gnu.org> <83h6p1bzev.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="4313"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Cc: jschmidt4gnu@vodafonemail.de, acm@muc.de, yandros@gmail.com, emacs-devel@gnu.org, luangruo@yahoo.com To: Eli Zaretskii Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Mon Aug 14 15:39:15 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 1qVXmt-0000tT-DS for ged-emacs-devel@m.gmane-mx.org; Mon, 14 Aug 2023 15:39:15 +0200 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1qVXmE-0007f9-J8; Mon, 14 Aug 2023 09:38:34 -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 1qVXmC-0007eR-Ll for emacs-devel@gnu.org; Mon, 14 Aug 2023 09:38:32 -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 1qVXmB-0002m6-Fn; Mon, 14 Aug 2023 09:38:31 -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:References:In-Reply-To:Subject:To: From; bh=icnxMt+41VnySevlWxzUXwOvhKDsM+XaiOim63o2eYw=; b=fhcXQ1wc4W7gS5vzdIc6 98wP2clUBx0ZOJM6DZBzvh+yifdDK6pIaWNBPPB0mJdXW67lwnLnj7IyKgC+aDr8VVapsUqL2xuHe SsJ2wFfKUnebbIA+UB6VhAqTc7ioTl4Dy30sDigfGnvCs8zBr7X1lBR3TO5qyDAIgmB05zzmfPDFC zwSLxQrw0KvnOLdoC/bs0pyNHuQLUDB8WsMYR63pe/oqpHHg/eKu77PnoqcxwThUB00+hH1Q0R6Mx Pho2/eR9aLxd7sEqi0/PWWSh2jjVdImjsi6zw40l76NwUtj5V1hSptq14Hqu7vHLPFj8YOfYHD5Ji hNfYc7DGjYBuCQ==; Original-Received: from acorallo by fencepost.gnu.org with local (Exim 4.90_1) (envelope-from ) id 1qVXm8-0001rp-H9; Mon, 14 Aug 2023 09:38:28 -0400 In-Reply-To: <83h6p1bzev.fsf@gnu.org> (Eli Zaretskii's message of "Mon, 14 Aug 2023 15:07:20 +0300") 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:308731 Archived-At: Eli Zaretskii writes: >> From: Andrea Corallo >> Cc: Jens Schmidt , acm@muc.de, >> yandros@gmail.com, emacs-devel@gnu.org, luangruo@yahoo.com >> Date: Mon, 14 Aug 2023 03:51:39 -0400 >> >> Eli Zaretskii writes: >> >> >> (setq native-comp-enable-subr-trampolines t)) >> >> ^^^^^^^^^^^ >> > >> > >> > These two are supposed to be aliases (the comp-enable-subr-trampolines >> > one is the old name, the other one is the new name). >> > >> > If the alias is missing, we should restore it, in addition to fixing >> > the name we use in startup.el. >> >> Thanks Jens for the analysis and you for the fix. >> >> We have in place the alias, but I guess when the code in loadup is >> executed is to early and is maybe not effective? > > Where is the alias? I don't think I see it. What did I miss? You are right apologies, got confised with the make-obsolete-variable we have in place. I added the alias with 922b6490286 in 29. Should we do the same for `native-comp-deferred-compilation'? Thanks Andrea