Mailing-List: contact cygwin-help AT sourceware DOT cygnus DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT sourceware DOT cygnus DOT com Delivered-To: mailing list cygwin AT sourceware DOT cygnus DOT com Message-ID: <20000322134420.1595.qmail@web110.yahoomail.com> Date: Wed, 22 Mar 2000 05:44:20 -0800 (PST) From: Earnie Boyd Reply-To: earnie_boyd AT yahoo DOT com Subject: Re: ld problems To: Kirth , cygwin AT sourceware DOT cygnus DOT com MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii --- Kirth wrote: > unfortuanlty the same thing > > g++ -o ffind config.o sql.o query.o parseword.o ffind.o > -L/usr/local/lib/mysql > -lmysqlclient > /cygnus/CYGWIN~1/H-I586~1/bin/../lib/gcc-lib/i586-cygwin32/2.95.2/../../../../i5 > 86-cygwin32/bin/ld: cannot open -lmysqlclient: No such file or directory > collect2: ld returned 1 exit status > make: *** [ffind] Error 1 > > ive even tried with -L./ and put the file in the same dir > ive renamed it mysqlclient, mysqlclient.so, mysqlclient.a ... all > fail. The library file name must be libmysqlclient.a for the -l switch to work. Another option is to just list the library file on the command line like this: g++ -o ffind config.o sql.o query.o parseword.o ffind.o \ /usr/local/lib/mysql/libmysqlclient.a The GCC will recognize the library and use it properly. > > i read something in the mailing list about removing collect2 > so that ld gets run directly, but i dont have a collect2 file (at all) > The collect2 problem isn't your problem here. That has to do with seeing the output from ld which you're seeing. And yes you have it, you'll find it under the lib/gcc-lib subdirectories. To get the exact location you can gcc --print-file-name=specs and the directory in which the specs file is the same directory that the collect2 program is located. ===== --- Earnie Boyd: __Cygwin: POSIX on Windows__ Cygwin Newbies: __Minimalist GNU for Windows__ Mingw32 List: Mingw Home: __________________________________________________ Do You Yahoo!? Talk to your friends online with Yahoo! Messenger. http://im.yahoo.com -- Want to unsubscribe from this list? Send a message to cygwin-unsubscribe AT sourceware DOT cygnus DOT com