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 60B641384B4 for ; Sat, 12 Dec 2015 22:48:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5245D21C012; Sat, 12 Dec 2015 22:48:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D5BC021C012 for ; Sat, 12 Dec 2015 22:48:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 730893406F3 for ; Sat, 12 Dec 2015 22:48:11 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 253DCA86 for ; Sat, 12 Dec 2015 22:48:06 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1449956784.bd92864b47dc6b6d3352eb5c82ce7c0dcc1c8d30.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/llvm/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/llvm/llvm-9999.ebuild X-VCS-Directories: sys-devel/llvm/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: bd92864b47dc6b6d3352eb5c82ce7c0dcc1c8d30 X-VCS-Branch: master Date: Sat, 12 Dec 2015 22:48:06 +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: 0d49e1e1-266c-4ffd-9279-3fe77fa6ff1e X-Archives-Hash: 49847e6ceb3a5ac57f295dca8a7397f6 commit: bd92864b47dc6b6d3352eb5c82ce7c0dcc1c8d30 Author: Marco Leogrande gmail com> AuthorDate: Wed Dec 9 05:42:29 2015 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Dec 12 21:46:24 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd92864b sys-devel/llvm: add BPF backend to compiled targets As part of 3.7.* releases, LLVM has officially added support for the BPF backend. This backend emits instructions in the eBPF language, that is used in the homonymous Linux kernel virtual machine. Users of LLVM can write a program in C and have it compiled directly into eBPF. This commit adds support for compiling this backend unconditionally. sys-devel/llvm/llvm-9999.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-devel/llvm/llvm-9999.ebuild b/sys-devel/llvm/llvm-9999.ebuild index 2f8afe7..d36085c 100644 --- a/sys-devel/llvm/llvm-9999.ebuild +++ b/sys-devel/llvm/llvm-9999.ebuild @@ -215,7 +215,7 @@ multilib_src_configure() { if use multitarget; then targets=all else - targets='host;CppBackend' + targets='host;BPF;CppBackend' use video_cards_radeon && targets+=';AMDGPU' fi