From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 125511 invoked by alias); 2 Jun 2015 11:18:29 -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 125197 invoked by uid 89); 2 Jun 2015 11:18:29 -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_LAZY_DOMAIN_SECURITY,SPF_HELO_PASS,T_RP_MATCHES_RCVD autolearn=no version=3.3.2 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 (AES256-GCM-SHA384 encrypted) ESMTPS; Tue, 02 Jun 2015 11:18:28 +0000 Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) by mx1.redhat.com (Postfix) with ESMTPS id 2934E2E6CEF; Tue, 2 Jun 2015 11:18:27 +0000 (UTC) Received: from localhost (ovpn-116-39.ams2.redhat.com [10.36.116.39]) by int-mx13.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t52BIQZO029017; Tue, 2 Jun 2015 07:18:26 -0400 Date: Tue, 02 Jun 2015 11:34:00 -0000 From: Jonathan Wakely To: libstdc++@gcc.gnu.org, gcc-patches@gcc.gnu.org Subject: [patch] Update ABI versioning info in libstdc++ manual Message-ID: <20150602111825.GH17401@redhat.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="RMedoP2+Pr6Rq0N2" Content-Disposition: inline User-Agent: Mutt/1.5.23 (2014-03-12) X-SW-Source: 2015-06/txt/msg00185.txt.bz2 --RMedoP2+Pr6Rq0N2 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline Content-length: 62 Committed to trunk, will also commit to the gcc-5-branch too. --RMedoP2+Pr6Rq0N2 Content-Type: text/x-patch; charset=us-ascii Content-Disposition: attachment; filename="patch.txt" Content-length: 1581 commit 0d264889b71aa29214f5414b707f8ba5735abe20 Author: Jonathan Wakely Date: Tue Jun 2 12:17:09 2015 +0100 * doc/xml/manual/abi.xml: Document versioning for 5.1.0 release. * doc/html/manual/*: Regenerate. diff --git a/libstdc++-v3/doc/xml/manual/abi.xml b/libstdc++-v3/doc/xml/manual/abi.xml index 86c591d..a2ed57b 100644 --- a/libstdc++-v3/doc/xml/manual/abi.xml +++ b/libstdc++-v3/doc/xml/manual/abi.xml @@ -264,6 +264,7 @@ compatible. GCC 4.8.0: libstdc++.so.6.0.18 GCC 4.8.3: libstdc++.so.6.0.19 GCC 4.9.0: libstdc++.so.6.0.20 + GCC 5.1.0: libstdc++.so.6.0.21 Note 1: Error should be libstdc++.so.3.0.3. @@ -329,6 +330,7 @@ compatible. GCC 4.8.0: GLIBCXX_3.4.18, CXXABI_1.3.7 GCC 4.8.3: GLIBCXX_3.4.19, CXXABI_1.3.7 GCC 4.9.0: GLIBCXX_3.4.20, CXXABI_1.3.8 + GCC 5.1.0: GLIBCXX_3.4.21, CXXABI_1.3.9 @@ -539,6 +541,7 @@ compatible. GCC 3.3.3: include/c++/3.3.3 GCC 3.4.x: include/c++/3.4.x GCC 4.x.y: include/c++/4.x.y + GCC 5.x.0: include/c++/5.x.0 --RMedoP2+Pr6Rq0N2--