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 045BF138350 for ; Sat, 25 Apr 2020 03:53:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4176AE09E6; Sat, 25 Apr 2020 03:53:49 +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 B4712E09E6 for ; Sat, 25 Apr 2020 03:53:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 8B1C434F1AB for ; Sat, 25 Apr 2020 03:53:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1337E1DD for ; Sat, 25 Apr 2020 03:53:45 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1587786807.b0e2bf63bbc24866d54da292b9201f4ad6d2eb06.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/ccls/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/ccls/ccls-0.20190823.6.ebuild dev-util/ccls/ccls-9999.ebuild X-VCS-Directories: dev-util/ccls/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: b0e2bf63bbc24866d54da292b9201f4ad6d2eb06 X-VCS-Branch: master Date: Sat, 25 Apr 2020 03:53:45 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 69d31bf0-3eb6-4873-a5ab-88883c827765 X-Archives-Hash: 463f4f290877d466bb4b6e980083203c commit: b0e2bf63bbc24866d54da292b9201f4ad6d2eb06 Author: Matt Turner gentoo org> AuthorDate: Sat Apr 25 03:52:17 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Sat Apr 25 03:53:27 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0e2bf63 dev-util/ccls: Pass -DCLANG_LINK_CLANG_DYLIB=1 Fixes the build with clang-10, while evidently not harming the build against earlier versions. Thanks to Michael Cook for the patch. Closes: https://bugs.gentoo.org/714764 Signed-off-by: Matt Turner gentoo.org> dev-util/ccls/ccls-0.20190823.6.ebuild | 1 + dev-util/ccls/ccls-9999.ebuild | 1 + 2 files changed, 2 insertions(+) diff --git a/dev-util/ccls/ccls-0.20190823.6.ebuild b/dev-util/ccls/ccls-0.20190823.6.ebuild index d959663fa6f..ac5830184a3 100644 --- a/dev-util/ccls/ccls-0.20190823.6.ebuild +++ b/dev-util/ccls/ccls-0.20190823.6.ebuild @@ -35,6 +35,7 @@ RDEPEND="${DEPEND}" src_configure() { local mycmakeargs=( -DUSE_SYSTEM_RAPIDJSON=ON + -DCLANG_LINK_CLANG_DYLIB=1 ) cmake_src_configure } diff --git a/dev-util/ccls/ccls-9999.ebuild b/dev-util/ccls/ccls-9999.ebuild index d959663fa6f..ac5830184a3 100644 --- a/dev-util/ccls/ccls-9999.ebuild +++ b/dev-util/ccls/ccls-9999.ebuild @@ -35,6 +35,7 @@ RDEPEND="${DEPEND}" src_configure() { local mycmakeargs=( -DUSE_SYSTEM_RAPIDJSON=ON + -DCLANG_LINK_CLANG_DYLIB=1 ) cmake_src_configure }