Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 30 May 2022 18:30:27 GMT
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 72562ae6e6e3 - stable/13 - Export _Unwind_Complete and _Unwind_VRS_Pop from arm's libgcc_s
Message-ID:  <202205301830.24UIURBF084057@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by dim:

URL: https://cgit.FreeBSD.org/src/commit/?id=72562ae6e6e3611b052571ce5044a2627fad1b97

commit 72562ae6e6e3611b052571ce5044a2627fad1b97
Author:     Dimitry Andric <dim@FreeBSD.org>
AuthorDate: 2022-04-27 09:04:10 +0000
Commit:     Dimitry Andric <dim@FreeBSD.org>
CommitDate: 2022-05-30 11:11:24 +0000

    Export _Unwind_Complete and _Unwind_VRS_Pop from arm's libgcc_s
    
    Apparently some ports on arm require these symbols, and while they were
    available in llvm's libunwind, they were never exported via the arm
    specific Symbol.map. Put them in the same version block as gcc does
    (GCC_3.5).
    
    Reported by:    Robert Clausecker <fuz_at_fuz.su>
    MFC after:      3 days
    
    (cherry picked from commit 8e5bcff58b77f8108b2bef0f1d113a91aef502a4)
---
 lib/libgcc_s/arm/Symbol.map | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lib/libgcc_s/arm/Symbol.map b/lib/libgcc_s/arm/Symbol.map
index fd48eab4d60a..c431bd464f55 100644
--- a/lib/libgcc_s/arm/Symbol.map
+++ b/lib/libgcc_s/arm/Symbol.map
@@ -3,8 +3,10 @@
  */
 
 GCC_3.5 {
+	_Unwind_Complete;
 	_Unwind_VRS_Get;
 	_Unwind_VRS_Set;
+	_Unwind_VRS_Pop;
 	__aeabi_unwind_cpp_pr0;
 	__aeabi_unwind_cpp_pr1;
 	__aeabi_unwind_cpp_pr2;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202205301830.24UIURBF084057>