From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 61382 invoked by alias); 7 Apr 2015 02:31:39 -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 61365 invoked by uid 89); 7 Apr 2015 02:31:38 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=AWL,BAYES_00,KAM_ASCII_DIVIDERS,KAM_LAZY_DOMAIN_SECURITY,T_RP_MATCHES_RCVD autolearn=no version=3.3.2 X-HELO: e7.ny.us.ibm.com Received: from e7.ny.us.ibm.com (HELO e7.ny.us.ibm.com) (32.97.182.137) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Tue, 07 Apr 2015 02:31:34 +0000 Received: from /spool/local by e7.ny.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Mon, 6 Apr 2015 22:31:31 -0400 Received: from d01dlp02.pok.ibm.com (9.56.250.167) by e7.ny.us.ibm.com (192.168.1.107) with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted; Mon, 6 Apr 2015 22:31:27 -0400 Received: from b01cxnp22036.gho.pok.ibm.com (b01cxnp22036.gho.pok.ibm.com [9.57.198.26]) by d01dlp02.pok.ibm.com (Postfix) with ESMTP id C64A56E804F for ; Mon, 6 Apr 2015 22:23:16 -0400 (EDT) Received: from d01av02.pok.ibm.com (d01av02.pok.ibm.com [9.56.224.216]) by b01cxnp22036.gho.pok.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id t372VRfJ27263134 for ; Tue, 7 Apr 2015 02:31:27 GMT Received: from d01av02.pok.ibm.com (localhost [127.0.0.1]) by d01av02.pok.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id t372VP0s008630 for ; Mon, 6 Apr 2015 22:31:25 -0400 Received: from [9.50.20.41] ([9.50.20.41]) by d01av02.pok.ibm.com (8.14.4/8.14.4/NCO v10.0 AVin) with ESMTP id t372VPH0008565; Mon, 6 Apr 2015 22:31:25 -0400 Message-ID: <1428373888.2816.53.camel@gnopaine> Subject: [PATCH, rs6000, libstdc++] Add baseline_symbols.txt for powerpc64le-linux-gnu From: Bill Schmidt To: gcc-patches@gcc.gnu.org Cc: dje.gcc@gmail.com, jwakely@redhat.com Date: Tue, 07 Apr 2015 02:31:00 -0000 Content-Type: text/plain; charset="UTF-8" Mime-Version: 1.0 Content-Transfer-Encoding: 7bit X-TM-AS-MML: disable X-Content-Scanned: Fidelis XPS MAILER x-cbid: 15040702-0037-0000-0000-000000F7A4B5 X-IsSubscribed: yes X-SW-Source: 2015-04/txt/msg00213.txt.bz2 Hi, It was recently pointed out that we still don't have a separate baseline_symbols.txt for powerpc64le-linux-gnu. This patch modifies configure.host to create a new abi_baseline_pair for powerpc64le and provides the generated symbol file (from "make new-abi-baseline"). Is this ok for stage4, or should I hold it until after 5.1 branches? (Apologies for attempting to send the whole file -- didn't see how large it was...) Thanks, Bill 2015-04-06 Bill Schmidt * config/abi/post/powerpc64le-linux-gnu/baseline_symbols.txt: New baseline symbols file. * configure.host: Add separate case for powerpc64le. Index: libstdc++-v3/config/abi/post/powerpc64le-linux-gnu/baseline_symbols.txt =================================================================== --- libstdc++-v3/config/abi/post/powerpc64le-linux-gnu/baseline_symbols.txt (revision 0) +++ libstdc++-v3/config/abi/post/powerpc64le-linux-gnu/baseline_symbols.txt (working copy) @@ -0,0 +1,5595 @@ ...too long to post... Index: libstdc++-v3/configure.host =================================================================== --- libstdc++-v3/configure.host (revision 221884) +++ libstdc++-v3/configure.host (working copy) @@ -338,9 +338,12 @@ case "${host}" in mips64*) abi_baseline_pair=mips64-linux-gnu ;; - powerpc64*) + powerpc64) abi_baseline_pair=powerpc64-linux-gnu ;; + powerpc64le) + abi_baseline_pair=powerpc64le-linux-gnu + ;; s390) abi_baseline_pair=s390-linux-gnu ;;