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: Finalizing 'inhibit-automatic-native-compilation' Date: Sat, 28 Jan 2023 10:31:26 +0200 Message-ID: <83a623awm9.fsf@gnu.org> References: <837cx8cey0.fsf@gnu.org> <86wn57bmjt.fsf@stephe-leake.org> <86sffvbis1.fsf@stephe-leake.org> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="20973"; mail-complaints-to="usenet@ciao.gmane.io" Cc: monnier@iro.umontreal.ca, emacs-devel@gnu.org, akrl@sdf.org, larsi@gnus.org, rlb@defaultvalue.org To: Stephen Leake Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Sat Jan 28 09:32:12 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 1pLgdA-0005G3-35 for ged-emacs-devel@m.gmane-mx.org; Sat, 28 Jan 2023 09:32:12 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1pLgch-0002kr-NK; Sat, 28 Jan 2023 03:31:43 -0500 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 1pLgcf-0002ho-BB for emacs-devel@gnu.org; Sat, 28 Jan 2023 03:31:41 -0500 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 1pLgcd-0002SJ-CA; Sat, 28 Jan 2023 03:31:40 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=YduGFJ2Gp/TK0F/mNfBpabNxDaeQGL7tiNWUjfZj46Q=; b=eV97a7uXDAZ/ wP/oVmGHlf/7BYRsIx7XLqYLIkifiF9O1/a5Y8x/qki9mKLMt9KkIU+C8TfUeBKqbLuyafvoe0LNv WClXtOoRDSn+XQOS2xL3m64TFYmRjWAS4zcsNkBcX2k/AvpPsQTa8Y3zbQCA+OJLHJQLE8T1H3m3i UMhMWSwHscjH5vhbdk4X8297IaYXmu/suyMaKlSJZFU47TiHX2FMxHWWZrztzYT6WN7XqxZTK5hIN L4nMBM5wI3vY1cLTj0vNNQwf1hb2bmF3ELLd0VlwH7JARZkTvfejDJ3LiWG0XgNp0lbRrBcUbpM6N 2zp1cdmuSX8t3u+YPZxCOw==; Original-Received: from [87.69.77.57] (helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pLgcc-0007de-7X; Sat, 28 Jan 2023 03:31:38 -0500 In-Reply-To: <86sffvbis1.fsf@stephe-leake.org> (message from Stephen Leake on Fri, 27 Jan 2023 16:32:46 -0800) 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:302705 Archived-At: > From: Stephen Leake > Cc: Eli Zaretskii , emacs-devel@gnu.org, Andrea Corallo > , Lars Ingebrigtsen , Rob Browning > > Date: Fri, 27 Jan 2023 16:32:46 -0800 > > Stefan Monnier writes: > > > Any reason you use `inhibit-automatic-native-compilation` rather than > > `native-comp-deferred-compilation`? > > Hmm. That is the variable I'm currently using, but I thought it was > deprecated. In addition, it doesn't seem to be declared: > > M-x describe-variable only finds > native-comp-deferred-compilation-deny-list. describe-variable only knows about user options, not about all the variables. Try "M-: native-comp-def TAB RET". > Maybe native-comp-deferred-compilation is only declared in a let-binding > somewhere? It's a variable defined in comp.c, but it is not a defcustom. > So if native-comp-deferred-compilation is fully supported in it's > current form, I'm happy. I don't think we will remove inhibit-automatic-native-compilation. It was in the source based for long enough to stay. So I think we will keep it, but I hope we can change its semantics to not generate the problems it currently causes.