Date: Thu, 12 Feb 1998 16:29:29 +0200 (IST) From: Eli Zaretskii To: cappa luca cc: djgpp AT delorie DOT com Subject: Re: linux object (*.o) with DJGPP In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On Thu, 12 Feb 1998, cappa luca wrote: > Can I use an objectfile, such as "osp.o", compiled under LiNUX > with DJGPP ? No, you can't. Linux uses a different object file format (ELF, whereas DJGPP uses COFF). You can convert ELF to COFF if you have Binutils which support both formats, but even then an object file can require external functions and variables which don't exist on DJGPP. In sum: don't do that, object files from different systems don't mix well.