X-Recipient: archive-cygwin AT delorie DOT 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 AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT 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 References: Subject: Re: Python extraneous dependencies To: cygwin AT cygwin DOT 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