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 6BB221382C5 for ; Mon, 21 Dec 2020 20:31:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B282EE0AB9; Mon, 21 Dec 2020 20:31:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 9966DE0AB9 for ; Mon, 21 Dec 2020 20:31:03 +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 33CB2335D0D for ; Mon, 21 Dec 2020 20:31:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B36E31D8 for ; Mon, 21 Dec 2020 20:31:00 +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: <1608582375.49dbc51c29cc022b039972927ac254b055885da6.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/lldb/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/lldb/lldb-11.0.1.9999.ebuild dev-util/lldb/lldb-11.0.1_rc2.ebuild dev-util/lldb/lldb-12.0.0.9999.ebuild X-VCS-Directories: dev-util/lldb/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 49dbc51c29cc022b039972927ac254b055885da6 X-VCS-Branch: master Date: Mon, 21 Dec 2020 20:31:00 +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: 5ab220e9-371d-451d-a972-db160d3f1a31 X-Archives-Hash: 5da5cb0a33a34b2df41d6c9920eb5349 commit: 49dbc51c29cc022b039972927ac254b055885da6 Author: Michał Górny gentoo org> AuthorDate: Mon Dec 21 20:09:27 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Dec 21 20:26:15 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49dbc51c dev-util/lldb: Fix test compiler choice Fix forcing ccache's clang symlink to tests that breaks their fragile assumptions. Instead let the build system figure out the right clang install. Thank to Pavel Labath for the suggestion. Signed-off-by: Michał Górny gentoo.org> dev-util/lldb/lldb-11.0.1.9999.ebuild | 3 --- dev-util/lldb/lldb-11.0.1_rc2.ebuild | 3 --- dev-util/lldb/lldb-12.0.0.9999.ebuild | 3 --- 3 files changed, 9 deletions(-) diff --git a/dev-util/lldb/lldb-11.0.1.9999.ebuild b/dev-util/lldb/lldb-11.0.1.9999.ebuild index e3f6cc1ae82..ac3f1435950 100644 --- a/dev-util/lldb/lldb-11.0.1.9999.ebuild +++ b/dev-util/lldb/lldb-11.0.1.9999.ebuild @@ -76,9 +76,6 @@ src_configure() { ) use test && mycmakeargs+=( -DLLVM_BUILD_TESTS=$(usex test) - # compilers for lit tests - -DLLDB_TEST_COMPILER="$(type -P clang)" - -DLLVM_MAIN_SRC_DIR="${WORKDIR}/llvm" -DLLVM_EXTERNAL_LIT="${EPREFIX}/usr/bin/lit" -DLLVM_LIT_ARGS="$(get_lit_flags)" diff --git a/dev-util/lldb/lldb-11.0.1_rc2.ebuild b/dev-util/lldb/lldb-11.0.1_rc2.ebuild index e3f6cc1ae82..ac3f1435950 100644 --- a/dev-util/lldb/lldb-11.0.1_rc2.ebuild +++ b/dev-util/lldb/lldb-11.0.1_rc2.ebuild @@ -76,9 +76,6 @@ src_configure() { ) use test && mycmakeargs+=( -DLLVM_BUILD_TESTS=$(usex test) - # compilers for lit tests - -DLLDB_TEST_COMPILER="$(type -P clang)" - -DLLVM_MAIN_SRC_DIR="${WORKDIR}/llvm" -DLLVM_EXTERNAL_LIT="${EPREFIX}/usr/bin/lit" -DLLVM_LIT_ARGS="$(get_lit_flags)" diff --git a/dev-util/lldb/lldb-12.0.0.9999.ebuild b/dev-util/lldb/lldb-12.0.0.9999.ebuild index bcf3d783cb7..07d5296d0db 100644 --- a/dev-util/lldb/lldb-12.0.0.9999.ebuild +++ b/dev-util/lldb/lldb-12.0.0.9999.ebuild @@ -76,9 +76,6 @@ src_configure() { ) use test && mycmakeargs+=( -DLLVM_BUILD_TESTS=$(usex test) - # compilers for lit tests - -DLLDB_TEST_COMPILER="$(type -P clang)" - -DLLVM_MAIN_SRC_DIR="${WORKDIR}/llvm" -DLLVM_EXTERNAL_LIT="${EPREFIX}/usr/bin/lit" -DLLVM_LIT_ARGS="$(get_lit_flags)"