From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 20EDB158086 for ; Tue, 30 Nov 2021 16:44:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 14DE92BC011; Tue, 30 Nov 2021 16:44:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A6EFE2BC011 for ; Tue, 30 Nov 2021 16:44:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4DEA9342C68 for ; Tue, 30 Nov 2021 16:44:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6C04314F for ; Tue, 30 Nov 2021 16:44:20 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1638290654.4771086f038d122bf1ba8fb81ab74fcb0a2da762.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/llvm-libunwind/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/llvm-libunwind/llvm-libunwind-13.0.0.ebuild sys-libs/llvm-libunwind/llvm-libunwind-13.0.1.9999.ebuild sys-libs/llvm-libunwind/llvm-libunwind-13.0.1_rc1.ebuild sys-libs/llvm-libunwind/llvm-libunwind-14.0.0.9999.ebuild X-VCS-Directories: sys-libs/llvm-libunwind/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 4771086f038d122bf1ba8fb81ab74fcb0a2da762 X-VCS-Branch: master Date: Tue, 30 Nov 2021 16:44:20 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0faa9860-56c1-4142-845d-bf9d7416e571 X-Archives-Hash: 63850c361d5928650e28ee691e71d715 commit: 4771086f038d122bf1ba8fb81ab74fcb0a2da762 Author: Michał Górny gentoo org> AuthorDate: Tue Nov 30 15:57:05 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Nov 30 16:44:14 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4771086f sys-libs/llvm-libunwind: Fix testing on non-native ABI Closes: https://bugs.gentoo.org/824238 Signed-off-by: Michał Górny gentoo.org> sys-libs/llvm-libunwind/llvm-libunwind-13.0.0.ebuild | 1 + sys-libs/llvm-libunwind/llvm-libunwind-13.0.1.9999.ebuild | 1 + sys-libs/llvm-libunwind/llvm-libunwind-13.0.1_rc1.ebuild | 1 + sys-libs/llvm-libunwind/llvm-libunwind-14.0.0.9999.ebuild | 1 + 4 files changed, 4 insertions(+) diff --git a/sys-libs/llvm-libunwind/llvm-libunwind-13.0.0.ebuild b/sys-libs/llvm-libunwind/llvm-libunwind-13.0.0.ebuild index 5e5505362a33..7878ad2cc3f1 100644 --- a/sys-libs/llvm-libunwind/llvm-libunwind-13.0.0.ebuild +++ b/sys-libs/llvm-libunwind/llvm-libunwind-13.0.0.ebuild @@ -72,6 +72,7 @@ multilib_src_configure() { -DLLVM_EXTERNAL_LIT="${EPREFIX}/usr/bin/lit" -DLLVM_LIT_ARGS="$(get_lit_flags);--param=cxx_under_test=${clang_path}" -DLIBUNWIND_LIBCXX_PATH="${WORKDIR}/libcxx" + -DLIBUNWIND_TARGET_TRIPLE="${CHOST}" ) fi diff --git a/sys-libs/llvm-libunwind/llvm-libunwind-13.0.1.9999.ebuild b/sys-libs/llvm-libunwind/llvm-libunwind-13.0.1.9999.ebuild index 5d782b4128b2..c16a58ffa99e 100644 --- a/sys-libs/llvm-libunwind/llvm-libunwind-13.0.1.9999.ebuild +++ b/sys-libs/llvm-libunwind/llvm-libunwind-13.0.1.9999.ebuild @@ -72,6 +72,7 @@ multilib_src_configure() { -DLLVM_EXTERNAL_LIT="${EPREFIX}/usr/bin/lit" -DLLVM_LIT_ARGS="$(get_lit_flags);--param=cxx_under_test=${clang_path}" -DLIBUNWIND_LIBCXX_PATH="${WORKDIR}/libcxx" + -DLIBUNWIND_TARGET_TRIPLE="${CHOST}" ) fi diff --git a/sys-libs/llvm-libunwind/llvm-libunwind-13.0.1_rc1.ebuild b/sys-libs/llvm-libunwind/llvm-libunwind-13.0.1_rc1.ebuild index 5d782b4128b2..c16a58ffa99e 100644 --- a/sys-libs/llvm-libunwind/llvm-libunwind-13.0.1_rc1.ebuild +++ b/sys-libs/llvm-libunwind/llvm-libunwind-13.0.1_rc1.ebuild @@ -72,6 +72,7 @@ multilib_src_configure() { -DLLVM_EXTERNAL_LIT="${EPREFIX}/usr/bin/lit" -DLLVM_LIT_ARGS="$(get_lit_flags);--param=cxx_under_test=${clang_path}" -DLIBUNWIND_LIBCXX_PATH="${WORKDIR}/libcxx" + -DLIBUNWIND_TARGET_TRIPLE="${CHOST}" ) fi diff --git a/sys-libs/llvm-libunwind/llvm-libunwind-14.0.0.9999.ebuild b/sys-libs/llvm-libunwind/llvm-libunwind-14.0.0.9999.ebuild index 5d782b4128b2..c16a58ffa99e 100644 --- a/sys-libs/llvm-libunwind/llvm-libunwind-14.0.0.9999.ebuild +++ b/sys-libs/llvm-libunwind/llvm-libunwind-14.0.0.9999.ebuild @@ -72,6 +72,7 @@ multilib_src_configure() { -DLLVM_EXTERNAL_LIT="${EPREFIX}/usr/bin/lit" -DLLVM_LIT_ARGS="$(get_lit_flags);--param=cxx_under_test=${clang_path}" -DLIBUNWIND_LIBCXX_PATH="${WORKDIR}/libcxx" + -DLIBUNWIND_TARGET_TRIPLE="${CHOST}" ) fi