[Numpy-svn] r6173 - branches/numpy-mingw-w64/numpy/distutils

numpy-svn at scipy.org numpy-svn at scipy.org
Fri Dec 19 05:28:42 EST 2008


Author: cdavid
Date: 2008-12-19 04:28:39 -0600 (Fri, 19 Dec 2008)
New Revision: 6173

Modified:
   branches/numpy-mingw-w64/numpy/distutils/mingw32ccompiler.py
Log:
Add one full msvcrt version for 80 (for manifest generation).

Modified: branches/numpy-mingw-w64/numpy/distutils/mingw32ccompiler.py
===================================================================
--- branches/numpy-mingw-w64/numpy/distutils/mingw32ccompiler.py	2008-12-19 10:25:18 UTC (rev 6172)
+++ branches/numpy-mingw-w64/numpy/distutils/mingw32ccompiler.py	2008-12-19 10:28:39 UTC (rev 6173)
@@ -344,7 +344,10 @@
 # XXX: ideally, we should use exactly the same version as used by python, but I
 # have no idea how to obtain the exact version from python. We could use the
 # strings utility on python.exe, maybe ?
-_MSVCRVER_TO_FULLVER = {'90': "9.0.21022.8"}
+_MSVCRVER_TO_FULLVER = {'90': "9.0.21022.8",
+        # I took one version in my SxS directory: no idea if it is the good
+        # one, and we can't retrieve it from python
+        '80': "8.0.50727.42"}
 
 def msvc_manifest_xml(maj, min):
     """Given a major and minor version of the MSVCR, returns the




More information about the Numpy-svn mailing list