From nobody Tue May 16 13:58:13 2023 X-Original-To: dev-commits-ports-main@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4QLHrm3Tbkz4B4TV; Tue, 16 May 2023 13:58:32 +0000 (UTC) (envelope-from nobutaka@nobutaka.org) Received: from ik1-329-24577.vs.sakura.ne.jp (ik1-329-24577.vs.sakura.ne.jp [153.126.186.81]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4QLHrl6547z3jtV; Tue, 16 May 2023 13:58:31 +0000 (UTC) (envelope-from nobutaka@nobutaka.org) Authentication-Results: mx1.freebsd.org; none Received: from vm-home3.internal.nobutaka.org (softbank001112123081.bbtec.net [1.112.123.81]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ik1-329-24577.vs.sakura.ne.jp (Postfix) with ESMTPSA id DDF37C00E69; Tue, 16 May 2023 22:58:21 +0900 (JST) DKIM-Filter: OpenDKIM Filter v2.11.0 ik1-329-24577.vs.sakura.ne.jp DDF37C00E69 Date: Tue, 16 May 2023 22:58:13 +0900 Message-ID: <867ct8ml8q.wl-nobutaka@freebsd.org> From: MANTANI Nobutaka To: Alexey Dokuchaev Cc: ports-committers@freebsd.org, dev-commits-ports-all@freebsd.org, dev-commits-ports-main@freebsd.org Subject: Re: git: 90eafe349e84 - main - editors/imhex: Use llvm16 to avoid a crash of base clang++ during build In-Reply-To: References: <202305151408.34FE83TY009248@gitrepo.freebsd.org> User-Agent: Wanderlust/2.15.9 (=?UTF-8?B?QWxtb3N0IFVucmVhbA==?=) SEMI-EPG/1.14.7 (=?UTF-8?B?SGFydWU=?=) FLIM-LB/1.14.9 (=?UTF-8?B?R29qxY0=?=) APEL-LB/10.8 EasyPG/1.0.0 Emacs/28.2 (=?UTF-8?B?YW1kNjQtcG9ydGJsZC1mcmVlYnNkMTMuMg==?=) MULE/6.0 (=?UTF-8?B?SEFOQUNISVJVU0FUTw==?=) List-Id: Commits to the main branch of the FreeBSD ports repository List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-main List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-ports-main@freebsd.org X-BeenThere: dev-commits-ports-main@freebsd.org MIME-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4QLHrl6547z3jtV X-Spamd-Bar: ---- X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:7684, ipnet:153.126.128.0/17, country:JP] X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-ThisMailContainsUnwantedMimeParts: N On Tue, 16 May 2023 10:43:56 +0900, Alexey Dokuchaev wrote: > > On Mon, May 15, 2023 at 02:08:03PM +0000, MANTANI Nobutaka wrote: > > commit 90eafe349e84d3056b1cf2f6625c526ef89023e5 > > > > editors/imhex: Use llvm16 to avoid a crash of base clang++ during build > > Is this due to https://github.com/llvm/llvm-project/issues/57170? > > ./danfe > Hi, Probably yes because the crash of base clang++ (version 15.0.7) is caused by the same assertion failure. Assertion failed: (isDependentContext() && "cannot iterate dependent diagnostics of non-dependent context") Build error log of editors/imhex port: https://pkg-status.freebsd.org/beefy18/data/main-amd64-default/p93c4b3fbc498_sd489b2a39d/logs/imhex-1.28.0.log The crash occured around the lambda expressions in this cpp file: https://github.com/WerWolv/ImHex/blob/v1.28.0/plugins/builtin/source/content/views/view_store.cpp#L142