Date: Tue, 13 Aug 1996 09:19:37 +0200 (IST) From: Eli Zaretskii To: John Luebs Cc: djgpp AT delorie DOT com Subject: Re: Making LIBs In-Reply-To: <320E7FB3.557@sprynet.com> Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On Sun, 11 Aug 1996, John Luebs wrote: > How do you make static libraries with DJGPP, I have TLIB for Turbo C, > would that work?? No. You should use the `ar' program which comes with DJGPP. It is documented in the on-line docs. You use it like so: ar rvs mylib.a file1.o file2.o file3.o ... Note that DJGPP libraries have a .a extension; it's a Unix legacy.