Date: Thu, 6 Jun 1996 16:53:27 +0200 (IST) From: Eli Zaretskii To: richard durant Cc: djgpp AT delorie DOT com Subject: Re: linking to lib HELP In-Reply-To: <31B67269.446B9B3D@umich.edu> Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On Thu, 6 Jun 1996, richard durant wrote: > I need to link to a special lib file that i have copied into the lib > dir. when i compile it complains about a function that i call that is > in the special library. > the name of the file is libpcv.a > gxx -lpcv > i am assuming that this is the correct way of compiling Please add -v to the gxx command line and post everything it prints. Warning: that output is *very* voluminous, so you might want to redirect it to a file, like this: redir -e errors.txt gxx -v -lpcv (`redir' is a program that comes with DJGPP.) Then post the contents of `errors.txt' file.