From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1720) id 44F173858D1E; Sun, 6 Aug 2023 12:34:40 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 44F173858D1E DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1691325280; bh=yJGTMEIrhIl4jftFAO+90TZjtuB4OEXVmWUi8THYr3k=; h=From:To:Subject:Date:From; b=leLvty8ZdZvktvelt0aw+ppwnUgNM2P2NB2gYC2Kb+oWCye2q4HZX4N6mFCqQ6R7b 42Q4HvYSRy3nK5IsgHck4D25+EucxPtidPfqZYmI0T8kAHveJaWiaAStNGyO0cE5l5 GwhkPrJ+sgX3nArVnQHe2l2xCsgZ8k1O08U2q3is= MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="utf-8" From: Francois Dumont To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org Subject: [gcc r14-3008] libstdc++: [_GLIBCXX_INLINE_VERSION] Add __cxa_call_terminate symbol export X-Act-Checkin: gcc X-Git-Author: =?utf-8?q?Fran=C3=A7ois_Dumont?= X-Git-Refname: refs/heads/master X-Git-Oldrev: 87b0749cfb9406790b108208b466cf507ae3c431 X-Git-Newrev: 3802297528685aa16c4f43bb1f0cedbdbf22923d Message-Id: <20230806123440.44F173858D1E@sourceware.org> Date: Sun, 6 Aug 2023 12:34:40 +0000 (GMT) List-Id: https://gcc.gnu.org/g:3802297528685aa16c4f43bb1f0cedbdbf22923d commit r14-3008-g3802297528685aa16c4f43bb1f0cedbdbf22923d Author: François Dumont Date: Sat Aug 5 17:18:16 2023 +0200 libstdc++: [_GLIBCXX_INLINE_VERSION] Add __cxa_call_terminate symbol export libstdc++-v3/ChangeLog: * config/abi/pre/gnu-versioned-namespace.ver: Add __cxa_call_terminate symbol export. Diff: --- libstdc++-v3/config/abi/pre/gnu-versioned-namespace.ver | 1 + 1 file changed, 1 insertion(+) diff --git a/libstdc++-v3/config/abi/pre/gnu-versioned-namespace.ver b/libstdc++-v3/config/abi/pre/gnu-versioned-namespace.ver index d7ef127cf02..267ab8fc719 100644 --- a/libstdc++-v3/config/abi/pre/gnu-versioned-namespace.ver +++ b/libstdc++-v3/config/abi/pre/gnu-versioned-namespace.ver @@ -164,6 +164,7 @@ CXXABI_2.0 { __cxa_begin_catch; __cxa_begin_cleanup; __cxa_call_unexpected; + __cxa_call_terminate; __cxa_current_exception_type; __cxa_deleted_virtual; __cxa_demangle;