From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mailout04.t-online.de (mailout04.t-online.de [194.25.134.18]) by sourceware.org (Postfix) with ESMTPS id 837C13861001 for ; Sat, 29 Aug 2020 08:26:31 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 837C13861001 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=t-online.de Authentication-Results: sourceware.org; spf=none smtp.mailfrom=HBBroeker@t-online.de Received: from fwd11.aul.t-online.de (fwd11.aul.t-online.de [172.20.27.152]) by mailout04.t-online.de (Postfix) with SMTP id 741D341AC09E; Sat, 29 Aug 2020 10:26:29 +0200 (CEST) Received: from [192.168.178.26] (ZeqCasZerhPlJi0sjanskMFeQmDmdaRNVSAjecWFVswQzC+pR8aYRe5-gz7mMseZ52@[87.154.43.89]) by fwd11.t-online.de with (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384 encrypted) esmtp id 1kBwBx-27F0DY0; Sat, 29 Aug 2020 10:26:29 +0200 Subject: Re: undetectable libraries To: Juan carlos Rebate , cygwin@cygwin.com References: From: =?UTF-8?Q?Hans-Bernhard_Br=c3=b6ker?= Message-ID: <5fe976c7-a42e-fe6c-113b-94f4e9215eb8@t-online.de> Date: Sat, 29 Aug 2020 10:26:23 +0200 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Thunderbird/68.12.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-ID: ZeqCasZerhPlJi0sjanskMFeQmDmdaRNVSAjecWFVswQzC+pR8aYRe5-gz7mMseZ52 X-TOI-EXPURGATEID: 150726::1598689589-000007DF-01D7D0FE/0/0 CLEAN NORMAL X-TOI-MSGID: 06ca6c39-bc62-4bb2-8884-39d252f886a9 X-Spam-Status: No, score=1.8 required=5.0 tests=BAYES_00, FREEMAIL_FROM, KAM_DMARC_STATUS, KAM_LAZY_DOMAIN_SECURITY, NICE_REPLY_A, RCVD_IN_BL_SPAMCOP_NET, RCVD_IN_DNSWL_NONE, RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL, SPF_HELO_NONE, SPF_NONE, TXREP autolearn=no autolearn_force=no version=3.4.2 X-Spam-Level: * X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: cygwin@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: General Cygwin discussions and problem reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Aug 2020 08:26:33 -0000 Am 28.08.2020 um 00:51 schrieb Juan carlos Rebate via Cygwin: > good evening, I have a strange problem, I try to compile code that > uses gtk3 and sdl2 in addition to curl, Would you mind revealing what code that is? > the problem is that when I > invoke the gcc compiler it tells me that sdl2-devel and libcurl are > not installed, but actually yes are. I'm pretty sure that GCC would never tell you those particular things. It would tell you which files it cannot find, but not which package they're supposed to be from. > ./configure --cross-prefix=x86_64-w64-mingw32- --enable-sdl > --enable-gtk --enable-curl That configure call looks strange, particularly the --cross-prefix part. The usual way of asking configure to build for a target platform other than the build host would look more like this: ./configure --host=x86_64-w64-mingw32 The actual output from your configure run, and/or the generated config.log file would almost certainly be more helpful than further speculation about the details of cygwin setup usage.