From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 70341 invoked by alias); 16 Jun 2017 14:25:47 -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 70315 invoked by uid 89); 16 Jun 2017 14:25:46 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00,SPF_HELO_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 spammy= X-Spam-User: qpsmtpd, 2 recipients X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 16 Jun 2017 14:25:45 +0000 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 2FF8D624CF; Fri, 16 Jun 2017 14:25:49 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 2FF8D624CF Authentication-Results: ext-mx10.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx10.extmail.prod.ext.phx2.redhat.com; spf=pass smtp.mailfrom=jwakely@redhat.com DKIM-Filter: OpenDKIM Filter v2.11.0 mx1.redhat.com 2FF8D624CF Received: from localhost (unknown [10.33.36.93]) by smtp.corp.redhat.com (Postfix) with ESMTP id CD33617AB7; Fri, 16 Jun 2017 14:25:48 +0000 (UTC) Date: Fri, 16 Jun 2017 14:25:00 -0000 From: Jonathan Wakely To: Jakub Jelinek Cc: libstdc++@gcc.gnu.org, gcc-patches@gcc.gnu.org Subject: Re: [PATCH] PR libstdc++/81092 add std::wstring symbols and bump library version Message-ID: <20170616142548.GC5211@redhat.com> References: <20170614181305.GE2958@redhat.com> <20170614181429.GF2958@redhat.com> <20170616142148.GL2123@tucnak> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: <20170616142148.GL2123@tucnak> X-Clacks-Overhead: GNU Terry Pratchett User-Agent: Mutt/1.8.0 (2017-02-23) X-SW-Source: 2017-06/txt/msg01198.txt.bz2 On 16/06/17 16:21 +0200, Jakub Jelinek wrote: >On Wed, Jun 14, 2017 at 07:14:29PM +0100, Jonathan Wakely wrote: >> On 14/06/17 19:13 +0100, Jonathan Wakely wrote: >> > There are two symbols defined in GCC 7.1's libstdc++.6.0.23 library >> > which are not exported on all targets (because I wrote "m" in the >> > linker script instead of "[jmy]"). >> > >> > This patch bumps the library version on gcc-7-branch to 6.0.24 and >> > exports the "[jy]" versions of the symbols with version the new >> > GLIBCXX_3.4.24 symbol version. >> > >> > This requires bumping the version on trunk to 6.0.25 and moving the >> > new random_device::_M_get_entropy() symbol to GLIBCXX_3.4.25 (which >> > will be done by the patch in the following mail). >> >> Here's the patch for trunk. >> >> Target maintainers will need to regenerate the baseline symbols on >> gcc-7-branch and trunk. >> >> I intend to commit this tomorrow to trunk. >> >> >> > >> commit 9354adee0dccc3ebc2aff07c3bdac3eb8ccdbda8 >> Author: Jonathan Wakely >> Date: Wed Jun 14 14:06:40 2017 +0100 >> >> PR libstdc++/81092 add std::wstring symbols and bump library version >> >> PR libstdc++/81092 >> * acinclude.m4: Bump libtool_VERSION. >> * config/abi/post/i386-linux-gnu/baseline_symbols.txt: Update. >> * config/abi/post/x86_64-linux-gnu/32/baseline_symbols.txt: Update. > >Here is a corresponding patch for i486 and powerpc 32-bit, ok for trunk? OK, thanks.