From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Michael Heerdegen Newsgroups: gmane.emacs.devel Subject: Re: Enabling native compilation by default when libgccjit is present Date: Thu, 09 Dec 2021 06:27:15 +0100 Message-ID: <87y24ul558.fsf@web.de> References: <87czmdqpv9.fsf@web.de> <83h7bo7rvz.fsf@gnu.org> <87bl1tjage.fsf@web.de> <877dchj9cu.fsf@web.de> <83ee6ozfb0.fsf@gnu.org> <87tufjqzo1.fsf@igel.home> <83r1anw7t5.fsf@gnu.org> <8735n2pqms.fsf@web.de> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="34194"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (gnu/linux) To: emacs-devel@gnu.org Cancel-Lock: sha1:pr64V4DJc8UO+3Tpy9gM4t5M61E= Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Thu Dec 09 06:28:57 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 1mvBzE-0008dt-PG for ged-emacs-devel@m.gmane-mx.org; Thu, 09 Dec 2021 06:28:56 +0100 Original-Received: from localhost ([::1]:32964 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1mvBzD-0000cd-0N for ged-emacs-devel@m.gmane-mx.org; Thu, 09 Dec 2021 00:28:55 -0500 Original-Received: from eggs.gnu.org ([209.51.188.92]:54984) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mvBxm-0008LT-PO for emacs-devel@gnu.org; Thu, 09 Dec 2021 00:27:26 -0500 Original-Received: from ciao.gmane.io ([116.202.254.214]:54138) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mvBxk-0001kM-EK for emacs-devel@gnu.org; Thu, 09 Dec 2021 00:27:26 -0500 Original-Received: from list by ciao.gmane.io with local (Exim 4.92) (envelope-from ) id 1mvBxi-0006v5-GY for emacs-devel@gnu.org; Thu, 09 Dec 2021 06:27:22 +0100 X-Injected-Via-Gmane: http://gmane.org/ Received-SPF: pass client-ip=116.202.254.214; envelope-from=ged-emacs-devel@m.gmane-mx.org; helo=ciao.gmane.io X-Spam_score_int: -13 X-Spam_score: -1.4 X-Spam_bar: - X-Spam_report: (-1.4 / 5.0 requ) BAYES_00=-1.9, FREEMAIL_FORGED_FROMDOMAIN=0.25, FREEMAIL_FROM=0.001, HEADER_FROM_DIFFERENT_DOMAINS=0.25, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=no autolearn_force=no X-Spam_action: no action 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" Xref: news.gmane.io gmane.emacs.devel:281435 Archived-At: Stefan Monnier writes: > Such warnings usually imply real errors (the resulting file will not > work properly because it contains code that "calls" a macro as if it > were a function (i.e. after have evaluated the arguments)). Usually yes, but not for my init file because it is always loaded when I compile it. And the same code also works interpreted. And because of all the dependencies of my init file I never came into the embarrassment to compile it "in a clean environment". So these issues are hard to detect (in this special case) and never had consequences - until now (where those real errors got real real errors). Michael.