From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54629) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WhDY4-0000ul-3k for qemu-devel@nongnu.org; Mon, 05 May 2014 03:43:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WhDXv-00042p-BR for qemu-devel@nongnu.org; Mon, 05 May 2014 03:42:52 -0400 Received: from e06smtp14.uk.ibm.com ([195.75.94.110]:44519) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WhDXv-00041t-22 for qemu-devel@nongnu.org; Mon, 05 May 2014 03:42:43 -0400 Received: from /spool/local by e06smtp14.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Mon, 5 May 2014 08:42:40 +0100 Received: from b06cxnps4074.portsmouth.uk.ibm.com (d06relay11.portsmouth.uk.ibm.com [9.149.109.196]) by d06dlp02.portsmouth.uk.ibm.com (Postfix) with ESMTP id 33497219004D for ; Mon, 5 May 2014 08:42:29 +0100 (BST) Received: from d06av06.portsmouth.uk.ibm.com (d06av06.portsmouth.uk.ibm.com [9.149.37.217]) by b06cxnps4074.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id s457gbR059310168 for ; Mon, 5 May 2014 07:42:37 GMT Received: from d06av06.portsmouth.uk.ibm.com (localhost [127.0.0.1]) by d06av06.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id s458gbic020634 for ; Mon, 5 May 2014 02:42:37 -0600 Message-ID: <536740EC.7020308@de.ibm.com> Date: Mon, 05 May 2014 09:42:36 +0200 From: Christian Borntraeger MIME-Version: 1.0 References: <1399126135-14560-1-git-send-email-rth@twiddle.net> <1399126135-14560-10-git-send-email-rth@twiddle.net> In-Reply-To: <1399126135-14560-10-git-send-email-rth@twiddle.net> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 9/9] tcg-s390: Don't force -march=z990 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Richard Henderson , qemu-devel@nongnu.org On 03/05/14 16:08, Richard Henderson wrote: > While we still require the LONG DISPLACEMENT facility, defaults > have moved on since then. Don't override the system compiler, > whose default may be set to z9-109 or later. > > Signed-off-by: Richard Henderson > --- > configure | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/configure b/configure > index 2fbec59..a73fb9f 100755 > --- a/configure > +++ b/configure > @@ -1132,11 +1132,11 @@ case "$cpu" in > CPU_CFLAGS="-m64 -mcpu=ultrasparc" > ;; > s390) > - CPU_CFLAGS="-m31 -march=z990" > + CPU_CFLAGS="-m31" > LDFLAGS="-m31 $LDFLAGS" > ;; > s390x) > - CPU_CFLAGS="-m64 -march=z990" > + CPU_CFLAGS="-m64" > LDFLAGS="-m64 $LDFLAGS" > ;; > i386) > Acked-by: Christian Borntraeger for this patch.