X-Recipient: archive-cygwin@delorie.com
DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id
	:list-unsubscribe:list-subscribe:list-archive:list-post
	:list-help:sender:message-id:date:from:references:subject:to
	:content-type; q=dns; s=default; b=veyv+RwREWyPq0t1Amqw/JF54n+d/
	PYarq1xopXUen3V0cI0pr0u1QuVgz4QkwsxnQD7N1r5YdxDDzwRQpvlIY5zO2jc+
	mRHg8azuvf6T7Hgk9pi5JMwC3GoA5m+XuHQ9AcYUcQyvXWSxM6ty4STp1OUrlNyg
	Q+fquRUkcV8BsQ=
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id
	:list-unsubscribe:list-subscribe:list-archive:list-post
	:list-help:sender:message-id:date:from:references:subject:to
	:content-type; s=default; bh=zQAvBxbB/4bldT0F/Doqv6MAASU=; b=Rcu
	jM0wxm2ruH3p6qwtpmhfeTezIYz20us2ZCbXFZz+jaKoiO3g8cxRoAwsFB4cdSO+
	ww8acFJaGhtlYiUWUTJTzlHsa0gdkaDZdRLGz6y3jZfrJVh1mFRKKYT3QOpz/gGl
	9FwregOYMx+39/T50zDqUgpOnbe3IcGKzs9tEgos=
Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm
List-Id: <cygwin.cygwin.com>
List-Subscribe: <mailto:cygwin-subscribe@cygwin.com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin@cygwin.com>
List-Help: <mailto:cygwin-help@cygwin.com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner@cygwin.com
Mail-Followup-To: cygwin@cygwin.com
Delivered-To: mailing list cygwin@cygwin.com
Authentication-Results: sourceware.org; auth=none
X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.1 spammy=H*M:1c69fb81, H*M:google, noticed
X-HELO: mail-ot1-f47.google.com
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;        d=gmail.com; s=20161025;        h=message-id:date:from:references:subject:to:user-agent;        bh=jM0KAlk5NKji0VhQk91Iur9MLf1EiJOWD/pSqOVX0Zg=;        b=jGRHMESTQUYC3E4W6k6AyxfHHq4e9+vLulva+Wcn8zwDNMbQakAJOfPbLtcJrTCo66         VegJ8qZd19nodwukEbXPAfbqlO02pQ1SuGDrPogWCvNLsVBGxn0XoP9UuxxJubPfpRAW         8DcAdsHC6bMC5syCld4CHKs1sWEh3gMd3E1dQp8dxQwNj++0BnmdHe79ocRDiMeE2Dog         GZmzBMMewoJEG0HEPg4OAdFz9LOkgD7cPcyECsvRPjEtX7a4vGM4Y8rSqls5w6Z2nLeI         wVHKzasDa9mt2Zk+UEHUl3hOHQsgL0kCpTwoetlmfROQ3pX3/eNrGrirCqaTuQ9mbJBA         abRA==
Message-ID: <5c9990e4.1c69fb81.48ecd.ebeb@mx.google.com>
Date: Mon, 25 Mar 2019 19:39:32 -0700 (PDT)
From: Steven Penny <svnpenn@gmail.com>
References: <a22c262a6916033450bc011dc181bc6f553a9baf.camel@cygwin.com>
Subject: Re: Python extraneous dependencies
To: cygwin@cygwin.com
Content-Type: text/plain; charset=utf8; format=flowed
User-Agent: Tryst/2.8.0 (cup.github.io/suede/tryst)

On Sun, 24 Feb 2019 17:42:36, Yaakov Selkowitz wrote:
> On Sat, 2019-02-23 at 16:29 -0800, Steven Penny wrote:
>> I noticed that "python36" requires "binutils".
> 
> This is needed for ctypes.util.find_library().  FWIW, on Linux, not
> only binutils is used, but also gcc.

Are you sure about that? It seems that function doesnt even work:

$ python3.6 -q
>>> from ctypes.util import find_library
>>> print(find_library('z'))
None
>>> print(find_library('cygz'))
None
>>> print(find_library('z.dll'))
None
>>> print(find_library('cygz.dll'))
None

$ python3.7 -q
>>> from ctypes.util import find_library
>>> print(find_library('z'))
None
>>> print(find_library('cygz'))
None
>>> print(find_library('z.dll'))
None
>>> print(find_library('cygz.dll'))
None

$ python3.8 -q
>>> from ctypes.util import find_library
>>> print(find_library('z'))
None
>>> print(find_library('cygz'))
None
>>> print(find_library('z.dll'))
None
>>> print(find_library('cygz.dll'))
None

Also see this post:

https://cygwin.com/ml/cygwin/2019-02/msg00432.html


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

