This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: GCC 4.4 cross compiler and issue with __floatdidf


Vincent R. wrote:
Hi,

When compiling the following code with a gcc 4.4 cross-compiler targetting
arm wince platform I get a problem with undefined reference __floatdidf :

undefined reference to `__floatdidf'
collect2: ld returned 1 exit status

Any idea ?

This should mean a conversion routine from long int to double float and this routine is normally in libgcc... So a search with 'nm' would tell if it is there or not.

The library list has the '-lgcc_s -lgcc' in your log (twice) so maybe
your 'libgcc.a' neither 'libgcc_s.dll', has this routine with the right
symbol name...


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