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/files/
Date: Wed, 17 Feb 2016 22:06:11
Message-Id: 1455746754.403306332c7ae107ff8bd4579e988667fb43c84c.mgorny@gentoo
1 commit: 403306332c7ae107ff8bd4579e988667fb43c84c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 17 21:41:10 2016 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 17 22:05:54 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40330633
7
8 sys-devel/llvm: Update the llvm-config for the live version, #574918
9
10 sys-devel/llvm/files/llvm-3.9-llvm-config.patch | 21 ---------------------
11 1 file changed, 21 deletions(-)
12
13 diff --git a/sys-devel/llvm/files/llvm-3.9-llvm-config.patch b/sys-devel/llvm/files/llvm-3.9-llvm-config.patch
14 index 90984e6..dc63b70 100644
15 --- a/sys-devel/llvm/files/llvm-3.9-llvm-config.patch
16 +++ b/sys-devel/llvm/files/llvm-3.9-llvm-config.patch
17 @@ -52,24 +52,3 @@ diff -Naur llvm-9999.orig/tools/llvm-config/llvm-config.cpp llvm-9999/tools/llvm
18 } else if (Arg == "--link-shared") {
19 LinkMode = LinkModeShared;
20 } else if (Arg == "--link-static") {
21 -diff -Naur llvm-9999.orig/utils/llvm-build/llvmbuild/main.py llvm-9999/utils/llvm-build/llvmbuild/main.py
22 ---- llvm-9999.orig/utils/llvm-build/llvmbuild/main.py 2016-01-25 14:47:55.511301054 +0100
23 -+++ llvm-9999/utils/llvm-build/llvmbuild/main.py 2016-01-25 14:58:13.014228689 +0100
24 -@@ -393,6 +393,8 @@
25 - //
26 - //===----------------------------------------------------------------------===//
27 -
28 -+#include "llvm/Config/config.h"
29 -+
30 - """)
31 - f.write('struct AvailableComponent {\n')
32 - f.write(' /// The name of the component.\n')
33 -@@ -413,7 +415,7 @@
34 - if library_name is None:
35 - library_name_as_cstr = 'nullptr'
36 - else:
37 -- library_name_as_cstr = '"lib%s.a"' % library_name
38 -+ library_name_as_cstr = '"lib%s" LTDL_SHLIB_EXT' % library_name
39 - if is_installed:
40 - is_installed_as_cstr = 'true'
41 - else: