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 F0CF61382C5 for ; Tue, 23 Jun 2020 07:33:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1B279E08C8; Tue, 23 Jun 2020 07:33:57 +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 C5CECE08C8 for ; Tue, 23 Jun 2020 07:33:56 +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 4A92E34F27A for ; Tue, 23 Jun 2020 07:33:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C1B5F9C for ; Tue, 23 Jun 2020 07:33:53 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1592897628.6df80059bd5c0eb22d682642b7b0d1e1a8a0a736.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-forensics/honggfuzz/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-forensics/honggfuzz/honggfuzz-2.2-r1.ebuild X-VCS-Directories: app-forensics/honggfuzz/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 6df80059bd5c0eb22d682642b7b0d1e1a8a0a736 X-VCS-Branch: master Date: Tue, 23 Jun 2020 07:33:53 +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: a082e76f-bd37-4147-a705-a51375971cb4 X-Archives-Hash: c08f4ad8161d6a196c7b7d2f21613c87 commit: 6df80059bd5c0eb22d682642b7b0d1e1a8a0a736 Author: Sergei Trofimovich gentoo org> AuthorDate: Tue Jun 23 07:33:29 2020 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Tue Jun 23 07:33:48 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6df80059 app-forensics/honggfuzz: fail in pkg_pretend() on clang honggfuzz needs destructor implementation in C. On gcc it uses __attribute__((cleanup(. On clang it uses -fblocks. Gentoo's sys-libs/compiler-rt does not provide runtime support library for -fblocks on clang making them effectively unusable. Fail at pkg_pretend() for now. Reported-by: Agostino Sarubbo Bug: https://bugs.gentoo.org/729256 Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Sergei Trofimovich gentoo.org> app-forensics/honggfuzz/honggfuzz-2.2-r1.ebuild | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app-forensics/honggfuzz/honggfuzz-2.2-r1.ebuild b/app-forensics/honggfuzz/honggfuzz-2.2-r1.ebuild index cb8aa248061..31cf4b0e944 100644 --- a/app-forensics/honggfuzz/honggfuzz-2.2-r1.ebuild +++ b/app-forensics/honggfuzz/honggfuzz-2.2-r1.ebuild @@ -33,6 +33,12 @@ PATCHES=( "${FILESDIR}"/${PN}-2.0-no-werror.patch ) +pkg_pretend() { + if tc-is-clang; then + die "${P} does not work on clang due to incomplete -fblock support: https://bugs.gentoo.org/729256. Please try gcc." + fi +} + src_prepare() { default tc-export AR CC