From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 0BC7159CA9 for ; Mon, 28 Mar 2016 14:35:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DA0CBE0801; Mon, 28 Mar 2016 14:35:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7F46AE0801 for ; Mon, 28 Mar 2016 14:35:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2C91E340756 for ; Mon, 28 Mar 2016 14:35:19 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 66FE685A for ; Mon, 28 Mar 2016 14:35:16 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1459175658.65cd653b4a5257ed97f58797305698d7c21df8ec.williamh@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/llvm/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/llvm/metadata.xml X-VCS-Directories: sys-devel/llvm/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 65cd653b4a5257ed97f58797305698d7c21df8ec X-VCS-Branch: master Date: Mon, 28 Mar 2016 14:35:16 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 16e8230a-ad07-474c-8264-d48ca326b6d4 X-Archives-Hash: 8afbe6be45ebd0b74543377948303e0c commit: 65cd653b4a5257ed97f58797305698d7c21df8ec Author: William Hubbs gentoo org> AuthorDate: Mon Mar 28 14:34:18 2016 +0000 Commit: William Hubbs gentoo org> CommitDate: Mon Mar 28 14:34:18 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65cd653b sys-devel/llvm: add myself as co-maintainer sys-devel/llvm/metadata.xml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sys-devel/llvm/metadata.xml b/sys-devel/llvm/metadata.xml index c49dc52..0ea3319 100644 --- a/sys-devel/llvm/metadata.xml +++ b/sys-devel/llvm/metadata.xml @@ -9,6 +9,10 @@ mgorny@gentoo.org Michał Górny + + williamh@gentoo.org + William Hubbs + Low Level Virtual Machine (LLVM) is: 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. 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.