Date: Sat, 11 Oct 1997 16:50:30 -0700 (PDT) Message-Id: <199710112350.QAA25274@adit.ap.net> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" To: nv95olbj AT klippan DOT se (Olof Bjarnason), djgpp AT delorie DOT com From: Nate Eldredge Subject: Re: Buildin DJGPP libraries Precedence: bulk At 01:21 10/11/1997 GMT, Olof Bjarnason wrote: >How do you build a DJGPP library made out of some modules? Use the `ar' command, see its docs under binutils. Basically: gcc -c mod1.c gcc -c mod2.c ... ar qcs libfoo.a mod1.o mod2.o ... Nate Eldredge eldredge AT ap DOT net