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/files: clang-3.3-gentoo-install.patch
Date: Tue, 30 Jul 2013 23:12:34
Message-Id: 20130730231227.8C2752171C@flycatcher.gentoo.org
1 mgorny 13/07/30 23:12:27
2
3 Modified: clang-3.3-gentoo-install.patch
4 Log:
5 Fix path to libprofile_rt, bug #478816.
6
7 (Portage version: 2.2.0_alpha191/cvs/Linux x86_64, signed Manifest commit with key 9627F456F9DA7643!)
8
9 Revision Changes Path
10 1.2 sys-devel/llvm/files/clang-3.3-gentoo-install.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/llvm/files/clang-3.3-gentoo-install.patch?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/llvm/files/clang-3.3-gentoo-install.patch?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/llvm/files/clang-3.3-gentoo-install.patch?r1=1.1&r2=1.2
15
16 Index: clang-3.3-gentoo-install.patch
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-devel/llvm/files/clang-3.3-gentoo-install.patch,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- clang-3.3-gentoo-install.patch 21 Jul 2013 10:00:50 -0000 1.1
23 +++ clang-3.3-gentoo-install.patch 30 Jul 2013 23:12:27 -0000 1.2
24 @@ -18,7 +18,7 @@
25 // not supported by old linkers.
26 std::string ProfileRT =
27 - std::string(TC.getDriver().Dir) + "/../lib/libprofile_rt.a";
28 -+ std::string(TC.getDriver().Dir) + "/../@libdir@/llvm/libprofile_rt.a";
29 ++ "-l:llvm/libprofile_rt.a";
30
31 CmdArgs.push_back(Args.MakeArgString(ProfileRT));
32 }