Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/llvm-libunwind/
Date: Fri, 30 Sep 2022 14:52:29
Message-Id: 1664549534.5c17599a6b99d202a7c655b7fd009dee63d07ebe.mgorny@gentoo
1 commit: 5c17599a6b99d202a7c655b7fd009dee63d07ebe
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 30 12:19:12 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 30 14:52:14 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c17599a
7
8 sys-libs/llvm-libunwind: Disable cross-unwind in 16.0.0_pre20220930
9
10 Disable cross-unwinding support in 16.0.0_pre20220930 snapshot due
11 to upstream regression.
12
13 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
14
15 sys-libs/llvm-libunwind/llvm-libunwind-16.0.0_pre20220930.ebuild | 5 ++---
16 1 file changed, 2 insertions(+), 3 deletions(-)
17
18 diff --git a/sys-libs/llvm-libunwind/llvm-libunwind-16.0.0_pre20220930.ebuild b/sys-libs/llvm-libunwind/llvm-libunwind-16.0.0_pre20220930.ebuild
19 index 67d11a24dc77..71139d2b5fda 100644
20 --- a/sys-libs/llvm-libunwind/llvm-libunwind-16.0.0_pre20220930.ebuild
21 +++ b/sys-libs/llvm-libunwind/llvm-libunwind-16.0.0_pre20220930.ebuild
22 @@ -85,9 +85,8 @@ multilib_src_configure() {
23 -DLIBUNWIND_INCLUDE_TESTS=$(usex test)
24 -DLIBUNWIND_INSTALL_HEADERS=ON
25
26 - # support non-native unwinding; given it's small enough,
27 - # enable it unconditionally
28 - -DLIBUNWIND_ENABLE_CROSS_UNWINDING=ON
29 + # temporarily disabled due to upstream regression
30 + -DLIBUNWIND_ENABLE_CROSS_UNWINDING=OFF
31
32 # avoid dependency on libgcc_s if compiler-rt is used
33 -DLIBUNWIND_USE_COMPILER_RT=${use_compiler_rt}