From: Charles Terry Newsgroups: comp.os.msdos.djgpp Subject: Re: Unresolved externals Date: Tue, 14 Apr 1998 06:12:22 -0700 Organization: All USENET -- http://www.Supernews.com Lines: 19 Message-ID: <353360B6.696C@plinet.com> References: <353331B2 DOT 6BCE0748 AT earthlink DOT net> NNTP-Posting-Host: 26771 AT 207 DOT 174 DOT 3 DOT 196 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk Steven S. Falls wrote: > > Is there a command line that checks for unsresolved externals in ar > or gxx? Please help. I need to know because this supper powerful gui > that I am coding has about 35.o files all linked togetaher with ar. > Thanks, > Ardy I think you can just write an empty main function and do a link such as- gcc -o main.exe *.o just to test, before you put them in a library my impression is that functions linked thru object files have to be totaly resoved, as opposed to libraries where just the particular module referenced has to be resolved. Of course I stand to be corrected. Charles Terry