From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [63.128.21.124]) by sourceware.org (Postfix) with ESMTP id 8CD6C3858D29 for ; Mon, 15 Mar 2021 12:23:20 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 8CD6C3858D29 Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-290-T_bINPIHOiW18uBoyHlWeQ-1; Mon, 15 Mar 2021 08:23:18 -0400 X-MC-Unique: T_bINPIHOiW18uBoyHlWeQ-1 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 2EB9810B3982; Mon, 15 Mar 2021 12:22:49 +0000 (UTC) Received: from localhost (unknown [10.33.36.30]) by smtp.corp.redhat.com (Postfix) with ESMTP id 4B70B2B451; Mon, 15 Mar 2021 12:22:48 +0000 (UTC) Date: Mon, 15 Mar 2021 12:22:47 +0000 From: Jonathan Wakely To: Iain Sandoe Cc: libstdc++ , GCC-patches@gcc.gnu.org Subject: Re: [PATCH] libstdc++, Darwin, ppc : Add new long double symbols. Message-ID: <20210315122247.GO3008@redhat.com> References: <3787BBB9-C235-493D-A2CE-4777B81FC9E2@sandoe.co.uk> MIME-Version: 1.0 In-Reply-To: <3787BBB9-C235-493D-A2CE-4777B81FC9E2@sandoe.co.uk> X-Clacks-Overhead: GNU Terry Pratchett X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=utf-8; format=flowed Content-Disposition: inline Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-14.8 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, RCVD_IN_DNSWL_LOW, RCVD_IN_MSPIKE_H4, RCVD_IN_MSPIKE_WL, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=unavailable autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: libstdc++@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libstdc++ mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Mar 2021 12:23:21 -0000 On 15/03/21 00:34 +0000, Iain Sandoe wrote: >Hi > >We need to add the symbols for to_chars and from_chars for the >long double cases. > >The testsuite test cases fail to build without this, so there’s no need >for an additional test. > >Tested on powerpc-darwin9. >OK for master? OK, thanks. >thanks >Iain > >libstdc++-v3/ChangeLog: > > * config/os/bsd/darwin/ppc-extra.ver: Add matching for > to_chars and from_chars for long double. >--- > libstdc++-v3/config/os/bsd/darwin/ppc-extra.ver | 3 +++ > 1 file changed, 3 insertions(+) > >diff --git a/libstdc++-v3/config/os/bsd/darwin/ppc-extra.ver b/libstdc++-v3/config/os/bsd/darwin/ppc-extra.ver >index f0aee9e8dac..970f3bb50ed 100644 >--- a/libstdc++-v3/config/os/bsd/darwin/ppc-extra.ver >+++ b/libstdc++-v3/config/os/bsd/darwin/ppc-extra.ver >@@ -16,6 +16,9 @@ > # 3.4.10 > _ZNKSt3tr14hashIgEclEg; > _ZNKSt4hashIgEclEg; >+# LDBL_3.4.29 >+ _ZSt10from_charsPKcS0_RgSt12chars_format; >+ _ZSt8to_charsPcS_g*; > # ldbl 1.3 > _ZT[IS]g; > _ZT[IS]Pg; >-- >2.24.1 > >