Gentoo Archives: gentoo-commits

From: William Hubbs <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/llvm/
Date: Mon, 28 Mar 2016 14:35:25
Message-Id: 1459175658.65cd653b4a5257ed97f58797305698d7c21df8ec.williamh@gentoo
1 commit: 65cd653b4a5257ed97f58797305698d7c21df8ec
2 Author: William Hubbs <williamh <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 28 14:34:18 2016 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 28 14:34:18 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65cd653b
7
8 sys-devel/llvm: add myself as co-maintainer
9
10 sys-devel/llvm/metadata.xml | 4 ++++
11 1 file changed, 4 insertions(+)
12
13 diff --git a/sys-devel/llvm/metadata.xml b/sys-devel/llvm/metadata.xml
14 index c49dc52..0ea3319 100644
15 --- a/sys-devel/llvm/metadata.xml
16 +++ b/sys-devel/llvm/metadata.xml
17 @@ -9,6 +9,10 @@
18 <email>mgorny@g.o</email>
19 <name>Michał Górny</name>
20 </maintainer>
21 + <maintainer type="person">
22 + <email>williamh@g.o</email>
23 + <name>William Hubbs</name>
24 + </maintainer>
25 <longdescription>Low Level Virtual Machine (LLVM) is:
26 1. A compilation strategy designed to enable effective program optimization across the entire lifetime of a program. LLVM supports effective optimization at compile time, link-time (particularly interprocedural), run-time and offline (i.e., after software is installed), while remaining transparent to developers and maintaining compatibility with existing build scripts.
27 2. A virtual instruction set - LLVM is a low-level object code representation that uses simple RISC-like instructions, but provides rich, language-independent, type information and dataflow (SSA) information about operands. This combination enables sophisticated transformations on object code, while remaining light-weight enough to be attached to the executable. This combination is key to allowing link-time, run-time, and offline transformations.