From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C5CB4139085 for ; Tue, 24 Jan 2017 09:31:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8AF16234018; Tue, 24 Jan 2017 09:31:18 +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 62494234018 for ; Tue, 24 Jan 2017 09:31:18 +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 79A593416B7 for ; Tue, 24 Jan 2017 09:31:17 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D75AB2D75 for ; Tue, 24 Jan 2017 09:31:15 +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: <1485250264.c036cf30ae425fe029f832de5e7604bc426e1f82.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-4.0.0_rc1.ebuild 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: c036cf30ae425fe029f832de5e7604bc426e1f82 X-VCS-Branch: master Date: Tue, 24 Jan 2017 09:31:15 +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: c0fd94df-ddbd-46ef-83ef-78ebe3b53126 X-Archives-Hash: c02467d12b2130fc2a0a0dbb7e15a66c commit: c036cf30ae425fe029f832de5e7604bc426e1f82 Author: Michał Górny gentoo org> AuthorDate: Tue Jan 24 09:30:25 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Jan 24 09:31:04 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c036cf30 sys-devel/llvm: Revert "Force x86 CHOST to i386-* [...]" Revert the CHOST adjustment since it solves the issue only partially. sys-devel/llvm/llvm-4.0.0_rc1.ebuild | 5 +---- sys-devel/llvm/llvm-9999.ebuild | 5 +---- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/sys-devel/llvm/llvm-4.0.0_rc1.ebuild b/sys-devel/llvm/llvm-4.0.0_rc1.ebuild index ab685cb..bbd935a 100644 --- a/sys-devel/llvm/llvm-4.0.0_rc1.ebuild +++ b/sys-devel/llvm/llvm-4.0.0_rc1.ebuild @@ -156,10 +156,7 @@ multilib_src_configure() { -DWITH_POLLY=OFF # TODO - # 'normalize' x86 triples to i386-* since this is the name used - # by compiler-rt libraries. - # remove this when https://reviews.llvm.org/D26796 is merged - -DLLVM_HOST_TRIPLE="${CHOST/#i[4-9]86-/i386-}" + -DLLVM_HOST_TRIPLE="${CHOST}" -DFFI_INCLUDE_DIR="${ffi_cflags#-I}" -DFFI_LIBRARY_DIR="${ffi_ldflags#-L}" diff --git a/sys-devel/llvm/llvm-9999.ebuild b/sys-devel/llvm/llvm-9999.ebuild index 49c65e2..a66f1e1 100644 --- a/sys-devel/llvm/llvm-9999.ebuild +++ b/sys-devel/llvm/llvm-9999.ebuild @@ -154,10 +154,7 @@ multilib_src_configure() { -DWITH_POLLY=OFF # TODO - # 'normalize' x86 triples to i386-* since this is the name used - # by compiler-rt libraries. - # remove this when https://reviews.llvm.org/D26796 is merged - -DLLVM_HOST_TRIPLE="${CHOST/#i[4-9]86-/i386-}" + -DLLVM_HOST_TRIPLE="${CHOST}" -DFFI_INCLUDE_DIR="${ffi_cflags#-I}" -DFFI_LIBRARY_DIR="${ffi_ldflags#-L}"