Subj : Re: Unresolved reference __turboFloat To : borland.public.cpp.borlandcpp From : It's me Date : Sat Dec 04 2004 10:10 am Thank you for the reply. I did look up the list of groups available under newsgroups.borland.com and I don't see any newsgroup with the word "cppbuilder" in the name. This is what I am using: E:\Borland\BCC55\Bin\bcc32 -c -ff -o%1.obj %1.c E:\Borland\BCC55\Bin\ilink32 -aa -c -x -Gn -ltWC %1.obj This produces the "Unresolved reference __turboFloat" message. If I do this instead, it links fine: E:\Borland\BCC55\Bin\bcc32 -tWC -ff -o%1.obj %1.c Thanks for helping. -- It's me "Ed Mulroy [TeamB]" wrote in message news:41b1e52b@newsgroups.borland.com... > Please show the command line that was used to call ilink32. > > Note that what you have is the set of command line tools from > C++ Builder version 5. but you have posted here, in the group > for the old, 1997, Borland C++ compiler. C++ Builder groups > all have the word 'cppbuilder' in their name. > > . Ed > > > It's me wrote in message > > news:41b143c5$1@newsgroups.borland.com... > > > > I am learning to use the free Borland command line > > compiler. If I use bcc32 to do the compile and link, > > things work fine. But if I use the -c option with bcc32 > > (for compile only), and then invoke ilink32 to do the > > linking, I am getting a unresolved reference to > > __turboFloat. Obviously, the parameters bcc32 is using > > to invoke ilink32 is different from the default settings > > when I invoke ilink32 from the command line. > > > > Does anybody know what options I should specify in order > > to resolve this? > > > .