Date: Wed, 1 Jul 1998 11:29:53 +0300 (IDT) From: Eli Zaretskii To: Plamen Petkov cc: djgpp AT delorie DOT com Subject: Re: Making Libraries In-Reply-To: <35995863.F2E5A25E@iname.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On Tue, 30 Jun 1998, Plamen Petkov wrote: > My question is: What switches do I need to use to make a library, > instead of an executable? It's not a question of different switches, you need to use another program: `ar', instead of `ld' or `gcc'. Assuming that you have object files file1.o, file2.o and file3.o, here's how you put them into a library called libmyfiles.a: ar rvs libmyfiles.a file1.o file2.o file3.o `ar' comes with documentation, type "info binutils ar" from the DOS prompt to read about ity.