From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Andrew Davies" To: help-gcc@gnu.org Subject: Re: IEEE format error Date: Thu, 30 Sep 1999 23:56:00 -0000 Message-ID: <01befe97$014ea280$4f7fa890@us1.lincoln.msl.mitel.com> References: <01befe8d$8d466fc0$4f7fa890@us1.lincoln.msl.mitel.com> <37DE0F48.D2786865@dotcom.fr> X-SW-Source: 1999-09n/msg00174.html Message-ID: <19990930235600.SpsJS5fRl3GG0g98v-M2jWLMBS4XsSnE7geahY0hHeI@z> > I just would like to know what is the target you use to generate file in IEEE > format ? The version that I'm using has the option for generating a file in ieee format. I use the following command in the linker command file to specify this: OUTPUT_FORMAT(ieee) To find out which formats yours supports use the objdump command with the -i option. > I developp a Mips embedded application and my target is mips-mips-elf, what do you > write instead of elf ? m68k-coff-ld for the linker Elf format would be of more use to me but I don't know how to do a build or patch to make my compiler support it. > > Maybe this idea could help you: > > when I compile for a mips processor I must indicate to the compiler that my CPU_TYPE > is a R3000 or R4000 .. . I use the command TARGET(m68000) in the linker command file, but that doesn't work.