From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from esa1.mentor.iphmx.com (esa1.mentor.iphmx.com [68.232.129.153]) by sourceware.org (Postfix) with ESMTPS id B9CDF3857C4F for ; Thu, 26 Nov 2020 14:52:24 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org B9CDF3857C4F Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=codesourcery.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=Andrew_Stubbs@mentor.com IronPort-SDR: THfhG7mYJdi0sPwzdhtypv6UWc6iFx5wbTYcP+snV3llMIe48u4VIBGl8802OOuGhHi3J0QkvK qWDHEDIw3WoGE23pB4PdJ7CqYsHKME6lbxY8kOvEmjTmD9DZBJhggcIjwV5iBW3Ld0Ux0bUn7K tZLGGoSnfse0E9Q2+gWbNd3iGpfS8eeshv3X73D+jINRWqWlFUgHS1mNjQQvOa1sumnfW4bYpd H2wMRwpMg0VQxCnEwug6q7rK0ZR7L2IXHFhRaF0FkKGuoYA8JmlXDyFgTLob6HxMYvdN4XYFTQ yaI= X-IronPort-AV: E=Sophos;i="5.78,372,1599552000"; d="scan'208";a="57810731" Received: from orw-gwy-01-in.mentorg.com ([192.94.38.165]) by esa1.mentor.iphmx.com with ESMTP; 26 Nov 2020 06:52:23 -0800 IronPort-SDR: R6pcLhs0SzoQxbyof0Zr9htxVx7QR4mIuq8+INXy/03hbMkaoE/Q1C2Gc4v4qrLOlKpm9jJpf4 HJDRrxoFBdYbZDMByeu0EgJ68Kuep8tXUrd1Gqg0AOOoaLxlBoTA9F87TcKriu4d3CSa1/8gna E86/fAJgec0YiTmZMekX61TCCBxejt3z9pZ3Q7WR1FeeTjGbIWqkufbwQcdnYbpUo/b9lJCQ2E VXEFbZY0l9uWm3UStxFHu8jdeRT3Rv4Xy20W67KEWP2/BZhqlNfBXG4l4yg90txCbNJPSvnCKd Pck= Subject: Re: [PATCH] configury : Fix LEB128 support for non-GNU assemblers. To: Iain Sandoe , GCC Patches References: <0099CE62-D849-40BA-BCBD-1AD3882AA9AD@sandoe.co.uk> From: Andrew Stubbs Message-ID: <999c3e83-5eeb-c7bf-fed1-5527209a4fa0@codesourcery.com> Date: Thu, 26 Nov 2020 14:52:18 +0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.10.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset="utf-8"; format=flowed Content-Language: en-GB Content-Transfer-Encoding: 8bit X-Originating-IP: [137.202.0.90] X-ClientProxiedBy: svr-ies-mbx-06.mgc.mentorg.com (139.181.222.6) To svr-ies-mbx-01.mgc.mentorg.com (139.181.222.1) X-Spam-Status: No, score=-6.1 required=5.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS, KAM_DMARC_STATUS, NICE_REPLY_A, SPF_HELO_PASS, SPF_PASS, TXREP autolearn=no autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Nov 2020 14:52:26 -0000 On 26/11/2020 14:48, Iain Sandoe wrote: > Rainer Orth wrote: > >>>> unfortunately, Solaris/SPARC results are miserable: >>>> > >>>> So without further investigation, we cannot use the leb128 directives >>>> with Solaris/SPARC as. >>> >>> I think Andrew was running GCN (not sure of the results there) >>> >>> - but, I suppose that the simplest modification is to do >>> >>> elif … target is darwin >>> >>> and make it so that other (non-GNU-as) platforms have to opt in. >> >> Agreed: that's certainly the safest option given that we're in stage3. >> While it would be nice to be able to use the leb128 directives, I >> wouldn't consider this crucial. >> >>> I’ll make a version that does this and test it locally. >> >> Great, thanks. > > testing this (which ought to be easy for GCN to opt into if wanted): I've tested the original patch, and there were no new failures for GCN. Andrew