From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:42380) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TdNcR-00085K-5O for qemu-devel@nongnu.org; Tue, 27 Nov 2012 11:02:48 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TdNcM-0007hl-Hn for qemu-devel@nongnu.org; Tue, 27 Nov 2012 11:02:43 -0500 Received: from mx1.redhat.com ([209.132.183.28]:13661) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TdNcM-0007hX-AC for qemu-devel@nongnu.org; Tue, 27 Nov 2012 11:02:38 -0500 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id qARG2aHK027902 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 27 Nov 2012 11:02:36 -0500 Message-ID: <50B4E41A.3080207@redhat.com> Date: Tue, 27 Nov 2012 17:02:34 +0100 From: Paolo Bonzini MIME-Version: 1.0 References: <1354005293-17741-1-git-send-email-pbonzini@redhat.com> <50B4E1F7.4060000@redhat.com> In-Reply-To: <50B4E1F7.4060000@redhat.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 1.3] build: compile translate.o at -O1 optimization List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Avi Kivity Cc: qemu-devel@nongnu.org Il 27/11/2012 16:53, Avi Kivity ha scritto: > This may change some string argument in CFLAGS, for example an argument > to -I. > > How about: > > CFLAGS_opt = -O2 > CFLAGS += $(CFLAGS_opt) > ... > %/translate.o: CFLAGS_opt = -O1 Not possible because CFLAGS comes from configure, but anyway what I'm going to do is %/translate.o: QEMU_CFLAGS += -fno-gcse now that Gerd found the culprit patch. Paolo