This is the mail archive of the crossgcc@cygnus.com mailing list for the crossgcc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: coff to ieee converter (fwd)



Hello!

On Wed, 11 Mar 1998, Geoffroy Montel wrote:

> Hello
> 
> I'm looking for a coff to ieee binaries converter.
> Does anyone know where I could get that?
> 
   Probably, the better choice for converter from any to any object file
format is 'objcopy' utility from the binutils package. To build support
for all available target, run

configure --enable-targets=all --prefix=<install-dir>
make
make install

To convert your file in ieee format, use command like:

objcopy --output-target=ieee coff.o ieee.o

                           Best regards, Victor