diff options
author | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2008-12-14 00:05:20 +0000 |
---|---|---|
committer | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2008-12-14 00:05:20 +0000 |
commit | a898e9750be92f660a530c4870c6b8dd80121fbc (patch) | |
tree | f85387c075b5c3bf6440900717d56928bbacad0f /INSTALL | |
parent | 1f51b2a142d69cd029a38d3875f666fbc54aa47d (diff) | |
download | mpfr-a898e9750be92f660a530c4870c6b8dd80121fbc.tar.gz |
INSTALL: corrections on r5730.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@5731 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -284,15 +284,16 @@ Notes on Windows 64 =================== Under Windows Vista 64, the following problem has been experienced with -MPFR 2.4.0 and Win32 with the MSVC runtime (msvcrt.dll): +MPFR 2.4.0 RC1 and Win32 with the MSVC runtime (msvcrt.dll): Error in mpfr_vsprintf (s, "%.*Zi, %R*e, %Lf%n", ...); expected: "00000010610209857723, -1.2345678875e+07, 0.032258" got: "00000010610209857723, -1.2345678875e+07, -0.000000" FAIL: tsprintf.exe -This error is due to the MSVC runtime not supporting the %Ld standard printf -modifier. You can check this with the following program: +This error is due to the MSVC runtime not supporting the L length modifier +for formatted output (e.g. printf with %Lf). You can check this with the +following program: #include <stdio.h> int main (void) |