From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 93604 invoked by alias); 4 Mar 2019 13:43:09 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 93280 invoked by uid 89); 4 Mar 2019 13:43:09 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-6.9 required=5.0 tests=BAYES_00,GIT_PATCH_2,RCVD_IN_DNSWL_NONE,SPF_HELO_PASS autolearn=ham version=3.3.2 spammy= X-HELO: EUR04-DB3-obe.outbound.protection.outlook.com Received: from mail-eopbgr60060.outbound.protection.outlook.com (HELO EUR04-DB3-obe.outbound.protection.outlook.com) (40.107.6.60) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 04 Mar 2019 13:43:07 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=armh.onmicrosoft.com; s=selector1-arm-com; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=nJLxrNrgO11ZmQJnGEs3hS+gMhb6u5ks9FcllhNDaGo=; b=L7LZrbBlty+iDN+vaNseyO5rmrf8iSkagjx9SeEwij6JSknlgtvVgSEdZp/3zGuMq/D1KU0r9IUpHck8LgvlDT2c0SUox7jboraad4x+NMB6AiR2Tc1CHpINDZ70WaitHG3p1LDaiokgFnVCVyya2UBpnY0Xy1TDjXeb96igtKw= Received: from DB6PR0802MB2309.eurprd08.prod.outlook.com (10.172.228.13) by DB6PR0802MB2566.eurprd08.prod.outlook.com (10.172.252.7) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.20.1665.19; Mon, 4 Mar 2019 13:43:05 +0000 Received: from DB6PR0802MB2309.eurprd08.prod.outlook.com ([fe80::d0e6:c694:efc6:f196]) by DB6PR0802MB2309.eurprd08.prod.outlook.com ([fe80::d0e6:c694:efc6:f196%3]) with mapi id 15.20.1665.020; Mon, 4 Mar 2019 13:43:05 +0000 From: Tamar Christina To: Jakub Jelinek , Christophe Lyon CC: James Greenhalgh , Kyrill Tkachov , "gcc-patches@gcc.gnu.org" , nd , Richard Earnshaw , Marcus Shawcroft Subject: RE: [PATCH][GCC][AArch64] Have empty HWCAPs string ignored during native feature detection Date: Mon, 04 Mar 2019 13:43:00 -0000 Message-ID: References: <20181218133602.GA19324@arm.com> <5C37798B.4000404@foss.arm.com> <20190123162740.GI30353@tucnak> <20190130141112.GU2135@tucnak> <20190227172203.GB20741@arm.com> <20190304133819.GL7611@tucnak> In-Reply-To: <20190304133819.GL7611@tucnak> received-spf: None (protection.outlook.com: arm.com does not designate permitted sender hosts) authentication-results: spf=none (sender IP is ) smtp.mailfrom=Tamar.Christina@arm.com; x-ms-exchange-senderadcheck: 1 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-MS-Exchange-CrossTenant-mailboxtype: HOSTED X-IsSubscribed: yes X-SW-Source: 2019-03/txt/msg00115.txt.bz2 > -----Original Message----- > From: Jakub Jelinek > Sent: Monday, March 4, 2019 13:38 > To: Christophe Lyon > Cc: Tamar Christina ; James Greenhalgh > ; Kyrill Tkachov > ; gcc-patches@gcc.gnu.org; nd > ; Richard Earnshaw ; Marcus > Shawcroft > Subject: Re: [PATCH][GCC][AArch64] Have empty HWCAPs string ignored > during native feature detection >=20 > On Mon, Mar 04, 2019 at 02:31:57PM +0100, Christophe Lyon wrote: > > The new test fails with a cross-compiler, because: > > FAIL: gcc.target/aarch64/options_set_10.c (test for excess errors) > > Excess errors: > > cc1: error: unknown value 'native' for -mcpu > > > > I don't know how to restrict tests to native compilers only. >=20 > { target native } > perhaps? Oh, I didn't know about that one, I knew about isnative , I'll give it a tr= y and see. Thanks! Regards, Tamar >=20 > Jakub