From: "DeHackEd" Newsgroups: comp.os.msdos.djgpp References: <01bd2180$f5bd5b40$8b7085cd AT mtrausch> Subject: Re: DLLs Lines: 26 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.00.0810.800 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.0810.800 Message-ID: <0HNn2.19$oF3.49@cabot.ops.attcanada.net> Date: Fri, 15 Jan 1999 15:33:26 -0500 NNTP-Posting-Host: 142.194.222.224 X-Trace: cabot.ops.attcanada.net 916432700 142.194.222.224 (Fri, 15 Jan 1999 20:38:20 GMT) NNTP-Posting-Date: Fri, 15 Jan 1999 20:38:20 GMT To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com I found something similar to what you are looking for on www.delorie.com 's server. The address is http://www.delorie.com/djgpp/dl/beta/ I'm not sure if this is what you had in mined. The DLL format is just a normal .o file. To combine multiple .o files into one, use this linker command (not for regular compiling!) ld -r -d -o outputfile.o all.o files.o here.o ... Just remember this software could have a bug or two, and I'm not sure about the restrictions on it. M. Trausch wrote in message news:01bd2180$f5bd5b40$8b7085cd AT mtrausch... >I have read the FAQ and it says that you can't use DXE files as DLL >files... is there a way to have dynamic-linking of files in DJGPP? I would >be very interested in using dynamic-link libraries, as I think that they >would probably save me lots of space, as opposed to a static linking of >libraries, and from what I've heard, DLL libs are faster and more >efficient, anyway. > >Would someone be willing to help me out with this? > > Thanks! > M. Trausch