delorie.com/archives/browse.cgi   search  
Mail Archives: cygwin/2024/06/21/18:23:13

DKIM-Filter: OpenDKIM Filter v2.11.0 delorie.com 45LMNCcQ448142
Authentication-Results: delorie.com;
dkim=pass (1024-bit key, unprotected) header.d=cygwin.com header.i=@cygwin.com header.a=rsa-sha256 header.s=default header.b=gVi+HAqb
X-Recipient: archive-cygwin AT delorie DOT com
DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 617C63830B77
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cygwin.com;
s=default; t=1719008590;
bh=HwUIfTdPtePVjPr4dFFjV0Xa9gXuJPkEbmBc4D3pazM=;
h=Date:To:Subject:In-Reply-To:References:List-Id:List-Unsubscribe:
List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:
From;
b=gVi+HAqbaZz2rs69+m/4iVYtJncoPLk0cOB5Q6EzOsj9+t3kygXqQQo7Llhkr7OS6
kz60pOX7mhB1DzqgI/UWg7aNeA95UQN/kLjeIq2NjZyx+dCzvvMlgvPHCvQOod6Tk1
96kXM+Gq4LE9YFYIIwUsltLeaY95yLMQysZeDPMY=
X-Original-To: cygwin AT cygwin DOT com
Delivered-To: cygwin AT cygwin DOT com
DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org BF27038313A7
ARC-Filter: OpenARC Filter v1.0.0 sourceware.org BF27038313A7
ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1719008569; cv=none;
b=MU774o7g0WpK21jY0oMr/Td6bTwckfCe13+HBfdX2nHz9WNVthsbwCQytx3X8KfEiGVXTd3E4jwDzkcZr670f0MCP85yxdx0kE5//ILl3jTyhfB2B1CSyVqSh0q0D3shVH+wnVQQkXKFTb8H26eLwVqV5rDd8waccENAyvU8ONA=
ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key;
t=1719008569; c=relaxed/simple;
bh=3AqSQSpNZG6dBck5dHOnoFIPB7B/pXBBp6u6SyNfxrY=;
h=Date:From:To:Subject:Message-Id:Mime-Version:DKIM-Signature;
b=wsud1BJxSErtmyg9KXFdNd5Xs+UUu5ju9XmvtUCdH1XuhqGKOifv53v839gs/HWt9FCadWN25ecMj4tOoCyo9XQU4u1d5u/u1rCN8VGEf0iBjny1EgNVserhYyAlRGc5qNN23qhpKEnDanEIXu74IgiKgRyBsSPFDtXeR1l2AxI=
ARC-Authentication-Results: i=1; server2.sourceware.org
Date: Sat, 22 Jun 2024 07:22:42 +0900
To: cygwin AT cygwin DOT com
Subject: Re: Analyze dependencies of a cygwin package
Message-Id: <20240622072242.a4d73ac071285066af58f56a@nifty.ne.jp>
In-Reply-To: <a61a7379-a470-4bb8-9a93-fef3fa25f2c3@kircheis.it>
References: <07082870-22a4-47a6-8fec-4ef954d181d1 AT kircheis DOT it>
<ff59d014-94ec-490d-980c-538177daf658 AT maxrnd DOT com>
<a61a7379-a470-4bb8-9a93-fef3fa25f2c3 AT kircheis DOT it>
X-Mailer: Sylpheed 3.7.0 (GTK+ 2.24.30; i686-pc-mingw32)
Mime-Version: 1.0
X-Spam-Status: No, score=-4.7 required=5.0 tests=BAYES_00, DKIM_SIGNED,
DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, NICE_REPLY_A, RCVD_IN_DNSWL_NONE,
SPF_HELO_PASS, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.6
X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on
server2.sourceware.org
X-BeenThere: cygwin AT cygwin DOT com
X-Mailman-Version: 2.1.30
List-Id: General Cygwin discussions and problem reports <cygwin.cygwin.com>
List-Unsubscribe: <https://cygwin.com/mailman/options/cygwin>,
<mailto:cygwin-request AT cygwin DOT com?subject=unsubscribe>
List-Archive: <https://cygwin.com/pipermail/cygwin/>
List-Post: <mailto:cygwin AT cygwin DOT com>
List-Help: <mailto:cygwin-request AT cygwin DOT com?subject=help>
List-Subscribe: <https://cygwin.com/mailman/listinfo/cygwin>,
<mailto:cygwin-request AT cygwin DOT com?subject=subscribe>
From: Takashi Yano via Cygwin <cygwin AT cygwin DOT com>
Reply-To: Takashi Yano <takashi DOT yano AT nifty DOT ne DOT jp>
Errors-To: cygwin-bounces+archive-cygwin=delorie DOT com AT cygwin DOT com
Sender: "Cygwin" <cygwin-bounces+archive-cygwin=delorie DOT com AT cygwin DOT com>

Hi Federico,

On Fri, 21 Jun 2024 19:35:32 +0200
Federico Kircheis wrote:
> After some investigation, it seems that ffmeg hash clang (which has gcc) 
                                          ^^^^^^^^^^
> as dependency in its chain.
> 
> I would consider it a bug, although not critical.

Do you mean "ffmpeg has clang as dependency"?
That's right thing. ffmpeg depends on clang indirectly as follows.

ffmpeg depends on libavfilter10.
libavfilter10 depends on libOpenCL1.
libOpenCL1 depends on libpocl2.
libpocl2 depends on clang.

pocl uses Clang as an OpenCL C frontend and LLVM for the kernel
compiler implementation, and as a portability layer.

-- 
Takashi Yano <takashi DOT yano AT nifty DOT ne DOT jp>

-- 
Problem reports:      https://cygwin.com/problems.html
FAQ:                  https://cygwin.com/faq/
Documentation:        https://cygwin.com/docs.html
Unsubscribe info:     https://cygwin.com/ml/#unsubscribe-simple

- Raw text -


  webmaster     delorie software   privacy  
  Copyright © 2019   by DJ Delorie     Updated Jul 2019