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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4242513835A for ; Thu, 4 Mar 2021 20:27:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 639C0E0895; Thu, 4 Mar 2021 20:27:19 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4CE32E0895 for ; Thu, 4 Mar 2021 20:27:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 54352335D43 for ; Thu, 4 Mar 2021 20:27:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 095F34F1 for ; Thu, 4 Mar 2021 20:27:17 +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: <1614889626.fee39ded7a34b9815a7905d044eb9abbd8a16ced.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/lld/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/lld/lld-12.0.0_rc2.ebuild X-VCS-Directories: sys-devel/lld/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: fee39ded7a34b9815a7905d044eb9abbd8a16ced X-VCS-Branch: master Date: Thu, 4 Mar 2021 20:27:17 +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: 853a9a89-6def-4366-b8c9-c9f5d0fee8eb X-Archives-Hash: 2794f0b8c64f5dee8866da31a77b6fca commit: fee39ded7a34b9815a7905d044eb9abbd8a16ced Author: Michał Górny gentoo org> AuthorDate: Thu Mar 4 20:05:14 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Mar 4 20:27:06 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fee39ded sys-devel/lld: Also enable shared libs for 12.0.0_rc2 Thanks to Arfrever for noticing. Signed-off-by: Michał Górny gentoo.org> sys-devel/lld/lld-12.0.0_rc2.ebuild | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/sys-devel/lld/lld-12.0.0_rc2.ebuild b/sys-devel/lld/lld-12.0.0_rc2.ebuild index 130638f2e5a..da442603c87 100644 --- a/sys-devel/lld/lld-12.0.0_rc2.ebuild +++ b/sys-devel/lld/lld-12.0.0_rc2.ebuild @@ -49,8 +49,7 @@ src_unpack() { src_configure() { local mycmakeargs=( - -DBUILD_SHARED_LIBS=OFF - + -DBUILD_SHARED_LIBS=ON -DLLVM_INCLUDE_TESTS=$(usex test) -DLLVM_MAIN_SRC_DIR="${WORKDIR}/llvm" ) @@ -60,7 +59,6 @@ src_configure() { -DLLVM_LIT_ARGS="$(get_lit_flags)" -DPython3_EXECUTABLE="${PYTHON}" ) - cmake_src_configure } @@ -68,9 +66,3 @@ src_test() { local -x LIT_PRESERVES_TMP=1 cmake_build check-lld } - -src_install() { - cmake_src_install - # LLD has no shared libraries, so strip it all for the time being - rm -r "${ED}"/usr/{include,lib*} || die -}