Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Message-Id: <4.3.1.2.20020226192743.01688fe0@pop.ma.ultranet.com> X-Sender: lhall AT pop DOT ma DOT ultranet DOT com X-Mailer: QUALCOMM Windows Eudora Version 4.3.1 Date: Tue, 26 Feb 2002 19:33:07 -0500 To: Alexander Lazic , Cygwin List From: "Larry Hall (RFK Partners, Inc)" Subject: Re: Help to link a prog static with libcurl, libssl and libcrypto. In-Reply-To: <20020226235104.GA1293@none.at> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" At 06:51 PM 2/26/2002, Alexander Lazic wrote: >Hi, > >i want to compile the 'simple.c' staticly but i get many errors. > >Progamm: > >C:\cygwin\usr\src\curl-7.9.3-1\docs\examples\simple.c > >I called gcc as follows: > >gcc -v -o simple simple.c `curl-config --cflags` \ >`curl-config --libs` -mno-cygwin -s -static > out.put 2>&1 > >I have attached the out.put file. > >I have found the '-mno-cygwin' in the FAQ >'http://cygwin.com/faq/faq_4.html#SEC94' but not how i can solve these >Problem :-( > > >Thanx al lot of any Hints and tips (Url, Doc, Man, ...). The CURL you're linking against is apparently expecting at least some POSIX APIs. You won't be able to get this to link without some porting. Perhaps CURL builds as a WIN32 version too, in which case you may be able to switch over to that without too much pain. Alternatively, you can try building this without the '-mno-cygwin' flag, although you'll link in cygwin1.dll for sure then. Really though, if you don't want or need any POSIX functionality, you should just use the Mingw toolset (www.mingw.org). Larry Hall lhall AT rfk DOT com RFK Partners, Inc. http://www.rfk.com 838 Washington Street (508) 893-9779 - RFK Office Holliston, MA 01746 (508) 893-9889 - FAX -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/