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 CB82C1382C5 for ; Tue, 6 Feb 2018 18:05:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4E531E0B9E; Tue, 6 Feb 2018 18:05:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2FE7EE0B9E for ; Tue, 6 Feb 2018 18:05:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 54A7D335C31 for ; Tue, 6 Feb 2018 18:05:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 303451CE for ; Tue, 6 Feb 2018 18:05:17 +0000 (UTC) From: "Amy Liffey" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Amy Liffey" Message-ID: <1517940285.a27be96554ff89124e27de08d56d34215428dd1d.amynka@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/flann/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/flann/flann-1.9.1.ebuild X-VCS-Directories: sci-libs/flann/ X-VCS-Committer: amynka X-VCS-Committer-Name: Amy Liffey X-VCS-Revision: a27be96554ff89124e27de08d56d34215428dd1d X-VCS-Branch: master Date: Tue, 6 Feb 2018 18:05:17 +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: 917e0980-e3ca-45d6-b953-0544f8aeff47 X-Archives-Hash: bea2c5b1bb5c707e169c101f968b72ed commit: a27be96554ff89124e27de08d56d34215428dd1d Author: Amy Liffey gentoo org> AuthorDate: Tue Feb 6 17:56:07 2018 +0000 Commit: Amy Liffey gentoo org> CommitDate: Tue Feb 6 18:04:45 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a27be965 sci-libs/flann: fix cuda linking error Submitted-by: pa.lacaze gmail.com Closes: https://bugs.gentoo.org/607062 Package-Manager: Portage-2.3.13, Repoman-2.3.3 sci-libs/flann/flann-1.9.1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sci-libs/flann/flann-1.9.1.ebuild b/sci-libs/flann/flann-1.9.1.ebuild index cc7583379a9..af848293644 100644 --- a/sci-libs/flann/flann-1.9.1.ebuild +++ b/sci-libs/flann/flann-1.9.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -73,7 +73,7 @@ src_configure() { -DUSE_OPENMP=$(usex openmp) ) use cuda && mycmakeargs+=( - -DCUDA_NVCC_FLAGS="${NVCCFLAGS},-arsch" + -DCUDA_NVCC_FLAGS="${NVCCFLAGS} --linker-options \"-arsch\"" ) cmake-utils_src_configure }