Unresolved external symbol _fltused
<< Back
If you don't use CRT and you are doing arithmetic to the float or double data type, you will run into this Linker error "LNK2001: unresolved external symbol _fltused".
All you have to do is to define the symbol so that the Linker will leave you alone.
extern "C" int _fltused = 0;