Displaying 1 result from an estimated 1 matches for "ericflee".
2005 Aug 29
2
floating point control on windows
...the warning:
Warning message:
DLL attempted to change FPU control word from 8001f to 9001f
So, what I did to try to fix the problem (to my knowledge, Microsoft will
not support compile time switching of floating point control until version
8.0 of their compiler - see: http://blogs.msdn.com/ericflee) was to place
the following statement inside R_init_mylib:
_controlfp(_MCW_PC, _PC_64); // use extended precision for operations in x87
FPU
This didn't fix my problem. I ended up sprinkling these liberally
throughout my code, but that didn't help. One thing I do like about the...