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-devel/llvm/
Date: Sat, 03 Jun 2017 08:27:57
Message-Id: 1496478444.fe7d7d25f8dfe6216c3e86ba59efb4b6e0e1915f.mgorny@gentoo
1 commit: fe7d7d25f8dfe6216c3e86ba59efb4b6e0e1915f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 24 13:39:51 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 3 08:27:24 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe7d7d25
7
8 sys-devel/llvm: Fix configure phase for 3.4.2-r100
9
10 sys-devel/llvm/llvm-3.4.2-r100.ebuild | 10 ++--------
11 1 file changed, 2 insertions(+), 8 deletions(-)
12
13 diff --git a/sys-devel/llvm/llvm-3.4.2-r100.ebuild b/sys-devel/llvm/llvm-3.4.2-r100.ebuild
14 index 6907006835c..bd41c339154 100644
15 --- a/sys-devel/llvm/llvm-3.4.2-r100.ebuild
16 +++ b/sys-devel/llvm/llvm-3.4.2-r100.ebuild
17 @@ -146,14 +146,14 @@ src_prepare() {
18 python_setup
19 }
20
21 -multilib_src_configure() {
22 +src_configure() {
23 # disable timestamps since they confuse ccache
24 local conf_flags=(
25 --disable-timestamps
26 --enable-keep-symbols
27 --enable-shared
28 --with-optimize-option=
29 - --enableoptimized
30 + --enable-optimized
31 --disable-assertions
32 --disable-expensive-checks
33 --disable-terminfo
34 @@ -165,12 +165,6 @@ multilib_src_configure() {
35 ac_cv_prog_XML2CONFIG=""
36 )
37
38 - if use clang; then
39 - conf_flags+=(
40 - --with-clang-resource-dir=../lib/clang/${PV}
41 - )
42 - fi
43 -
44 if use libffi; then
45 local CPPFLAGS=${CPPFLAGS}
46 append-cppflags "$($(tc-getPKG_CONFIG) --cflags libffi)"