Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-devel/llvm: llvm-3.3-r2.ebuild ChangeLog
Date: Sat, 28 Dec 2013 22:56:45
Message-Id: 20131228225642.CD32C2004C@flycatcher.gentoo.org
1 mgorny 13/12/28 22:56:42
2
3 Modified: llvm-3.3-r2.ebuild ChangeLog
4 Log:
5 Fix building R600 target, bug #496308.
6
7 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
8
9 Revision Changes Path
10 1.3 sys-devel/llvm/llvm-3.3-r2.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/llvm/llvm-3.3-r2.ebuild?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/llvm/llvm-3.3-r2.ebuild?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/llvm/llvm-3.3-r2.ebuild?r1=1.2&r2=1.3
15
16 Index: llvm-3.3-r2.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-devel/llvm/llvm-3.3-r2.ebuild,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- llvm-3.3-r2.ebuild 28 Dec 2013 19:13:43 -0000 1.2
23 +++ llvm-3.3-r2.ebuild 28 Dec 2013 22:56:42 -0000 1.3
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2013 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/llvm/llvm-3.3-r2.ebuild,v 1.2 2013/12/28 19:13:43 mgorny Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/llvm/llvm-3.3-r2.ebuild,v 1.3 2013/12/28 22:56:42 mgorny Exp $
29
30 EAPI=5
31
32 @@ -206,10 +206,13 @@
33 targets='all'
34 else
35 targets='host,cpp'
36 - use video_cards_radeon && targets+=',r600'
37 fi
38 conf_flags+=( --enable-targets=${targets} )
39
40 + if use video_cards_radeon; then
41 + conf_flags+=( --enable-experimental-targets=R600 )
42 + fi
43 +
44 if multilib_build_binaries; then
45 use gold && conf_flags+=( --with-binutils-include="${EPREFIX}"/usr/include/ )
46 # extra commas don't hurt
47 @@ -245,6 +248,10 @@
48 # but it's fairly easy to steal this from configured autotools
49 local targets=$(sed -n -e 's/^TARGETS_TO_BUILD=//p' Makefile.config || die)
50 local libdir=$(get_libdir)
51 +
52 + # cmake doesn't have R600 in 3.3
53 + targets=${targets/R600 /}
54 +
55 local mycmakeargs=(
56 -DLLVM_TARGETS_TO_BUILD="${targets// /;}"
57 -DLLVM_LIBDIR_SUFFIX=${libdir#lib}
58
59
60
61 1.162 sys-devel/llvm/ChangeLog
62
63 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/llvm/ChangeLog?rev=1.162&view=markup
64 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/llvm/ChangeLog?rev=1.162&content-type=text/plain
65 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/llvm/ChangeLog?r1=1.161&r2=1.162
66
67 Index: ChangeLog
68 ===================================================================
69 RCS file: /var/cvsroot/gentoo-x86/sys-devel/llvm/ChangeLog,v
70 retrieving revision 1.161
71 retrieving revision 1.162
72 diff -u -r1.161 -r1.162
73 --- ChangeLog 28 Dec 2013 19:13:43 -0000 1.161
74 +++ ChangeLog 28 Dec 2013 22:56:42 -0000 1.162
75 @@ -1,6 +1,9 @@
76 # ChangeLog for sys-devel/llvm
77 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
78 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/llvm/ChangeLog,v 1.161 2013/12/28 19:13:43 mgorny Exp $
79 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/llvm/ChangeLog,v 1.162 2013/12/28 22:56:42 mgorny Exp $
80 +
81 + 28 Dec 2013; Michał Górny <mgorny@g.o> llvm-3.3-r2.ebuild:
82 + Fix building R600 target, bug #496308.
83
84 28 Dec 2013; Michał Górny <mgorny@g.o> llvm-3.3-r2.ebuild:
85 Fix clang blocker to match 3.3-r100.