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 C55F8158083 for ; Tue, 10 Sep 2024 12:59:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 78EC5E2A11; Tue, 10 Sep 2024 12:59:00 +0000 (UTC) Received: from smtp.gentoo.org (dev.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5684AE2A0E for ; Tue, 10 Sep 2024 12:59:00 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 888A2341E1C for ; Tue, 10 Sep 2024 12:58:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 117BD1F35 for ; Tue, 10 Sep 2024 12:58:58 +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: <1725973120.4c0df1554143725d5059079b9938f0cdab1350d1.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/libcxx/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/libcxx/libcxx-20.0.0.9999.ebuild X-VCS-Directories: sys-libs/libcxx/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 4c0df1554143725d5059079b9938f0cdab1350d1 X-VCS-Branch: master Date: Tue, 10 Sep 2024 12:58:58 +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: 4769b9cc-8ac9-4b66-bdf7-9863342da44d X-Archives-Hash: ab13fa24d52e1c2800862c67d882bc7a commit: 4c0df1554143725d5059079b9938f0cdab1350d1 Author: Michał Górny gentoo org> AuthorDate: Tue Sep 10 11:44:56 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Sep 10 12:58:40 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c0df155 sys-libs/libcxx: Update for temporary install test-suite install Signed-off-by: Michał Górny gentoo.org> sys-libs/libcxx/libcxx-20.0.0.9999.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sys-libs/libcxx/libcxx-20.0.0.9999.ebuild b/sys-libs/libcxx/libcxx-20.0.0.9999.ebuild index a0d07e1507f4..43c213cc6426 100644 --- a/sys-libs/libcxx/libcxx-20.0.0.9999.ebuild +++ b/sys-libs/libcxx/libcxx-20.0.0.9999.ebuild @@ -144,6 +144,11 @@ multilib_src_compile() { multilib_src_test() { local -x LIT_PRESERVES_TMP=1 + cmake_build install-cxx-test-suite-prefix + cp "${BUILD_DIR}"/{lib,libcxx/test-suite-install/$(get_libdir)}/libc++_shared.so || die + if use static-libs; then + cp "${BUILD_DIR}"/{lib,libcxx/test-suite-install/$(get_libdir)}/libc++_static.a || die + fi cmake_build check-cxx }