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/compiler-rt/
Date: Sun, 01 Oct 2017 09:03:14
Message-Id: 1506848556.e6780bcdee7b453fd01108948ac9818ba6cf51e1.mgorny@gentoo
1 commit: e6780bcdee7b453fd01108948ac9818ba6cf51e1
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 30 21:39:50 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 1 09:02:36 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6780bcd
7
8 sys-libs/compiler-rt: Fix using external lit
9
10 sys-libs/compiler-rt/compiler-rt-9999.ebuild | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13 diff --git a/sys-libs/compiler-rt/compiler-rt-9999.ebuild b/sys-libs/compiler-rt/compiler-rt-9999.ebuild
14 index 4d0626314c2..933e8067871 100644
15 --- a/sys-libs/compiler-rt/compiler-rt-9999.ebuild
16 +++ b/sys-libs/compiler-rt/compiler-rt-9999.ebuild
17 @@ -81,7 +81,7 @@ src_configure() {
18
19 if use test; then
20 mycmakeargs+=(
21 - -DLIT_COMMAND="${EPREFIX}/usr/bin/lit"
22 + -DLLVM_EXTERNAL_LIT="${EPREFIX}/usr/bin/lit"
23
24 -DCOMPILER_RT_TEST_COMPILER="${EPREFIX}/usr/lib/llvm/${LLVM_SLOT}/bin/clang"
25 -DCOMPILER_RT_TEST_CXX_COMPILER="${EPREFIX}/usr/lib/llvm/${LLVM_SLOT}/bin/clang++"