From: "Thomas Harte" Newsgroups: comp.os.msdos.djgpp Subject: Re: own library Date: Fri, 15 Sep 2000 22:29:05 +0100 Organization: BT Internet Lines: 12 Message-ID: <8pu4fs$mj3$1@neptunium.btinternet.com> References: <8ptk3q$aos$1 AT info DOT cyf-kr DOT edu DOT pl> NNTP-Posting-Host: host213-1-133-136.btinternet.com X-Newsreader: Microsoft Outlook Express 4.72.3155.0 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3155.0 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Rafał Maj wrote in message <8ptk3q$aos$1 AT info DOT cyf-kr DOT edu DOT pl>... >Hi, can anybody explain how to write own library ? Compile the library code into object (.o) code, and then create a library from it using 'ar' the GNU archiver. Then you'll have a lib file (.a) as you want. 'ar' is terribly easy to use. -Thomas