summaryrefslogtreecommitdiff
path: root/INSTALL
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2008-12-14 00:05:20 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2008-12-14 00:05:20 +0000
commita898e9750be92f660a530c4870c6b8dd80121fbc (patch)
treef85387c075b5c3bf6440900717d56928bbacad0f /INSTALL
parent1f51b2a142d69cd029a38d3875f666fbc54aa47d (diff)
downloadmpfr-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--INSTALL7
1 files changed, 4 insertions, 3 deletions
diff --git a/INSTALL b/INSTALL
index 2c62845ac..3610fdf8b 100644
--- a/INSTALL
+++ b/INSTALL
@@ -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)