From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: CFLAGS change Date: Sat, 12 Jul 2003 20:11:13 -0400 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org X-Trace: main.gmane.org 1058055485 9071 80.91.224.249 (13 Jul 2003 00:18:05 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 13 Jul 2003 00:18:05 +0000 (UTC) Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Sun Jul 13 02:18:04 2003 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19bUZ2-0002MA-00 for ; Sun, 13 Jul 2003 02:18:04 +0200 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 19bUlY-0003KL-00 for ; Sun, 13 Jul 2003 02:31:00 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.20) id 19bUZL-0003Dg-JH for emacs-devel@quimby.gnus.org; Sat, 12 Jul 2003 20:18:23 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.20) id 19bUYp-00038n-In for emacs-devel@gnu.org; Sat, 12 Jul 2003 20:17:51 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.20) id 19bUSt-0006rL-LX for emacs-devel@gnu.org; Sat, 12 Jul 2003 20:12:14 -0400 Original-Received: from fencepost.gnu.org ([199.232.76.164]) by monty-python.gnu.org with esmtp (Exim 4.20) id 19bUSP-0005gk-Cy for emacs-devel@gnu.org; Sat, 12 Jul 2003 20:11:13 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.20) id 19bUSP-0003uQ-6w; Sat, 12 Jul 2003 20:11:13 -0400 Original-To: emacs-devel@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:15568 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:15568 I just checked in a change which probably needs to have a different interface. The change is that optimization is turned off unless the macro OPTIMIZE is defined. The reason for this is that -O and inlining get in the way of debugging. I don't think that the macro OPTIMIZE is the right interface, though. It is merely a quick hack. I think optimization should be enabled by default. Perhaps the right interface would be a configure option, --disable-optimization. Would someone like to implement that?