VC++ /QIfist option (Suppress _ftol)

Started by
1 comment, last by xropi 21 years, 6 months ago
/QIfist (Suppress _ftol) doesn't work for me. VC 6.0 says the warning: LINK : warning LNK4044: unrecognized option "QIfist"; ignored This option should eliminate FPU control-word settings after all float to int conversion -- as can be read in the online MSDN. What can I do if I need this feature and I have VC6.0 which seems not to be supporting that? [edited by - xropi on October 18, 2002 9:41:17 AM]
I'm interested in full featured 3D system development.
Advertisement
You get the error because QIfist is a compiler option, not a linker option!. Move the setting to the compiler options and it will compile fine.

--
Simon O''Connor
Creative Asylum Ltd
www.creative-asylum.com

Simon O'Connor | Technical Director (Newcastle) Lockwood Publishing | LinkedIn | Personal site

quote:Original post by S1CA
You get the error because QIfist is a compiler option, not a linker option!. Move the setting to the compiler options and it will compile fine.

--
Simon O''Connor
Creative Asylum Ltd
www.creative-asylum.com


Thank you, that''s it! (somehow it has appeared in the linker options too...)
I'm interested in full featured 3D system development.

This topic is closed to new replies.

Advertisement