diff options
author | David Cournapeau <cournape@gmail.com> | 2008-12-19 10:28:39 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-12-19 10:28:39 +0000 |
commit | da4b745623f7f5fdc7cab23f01b7d7d1f22ccb50 (patch) | |
tree | 40404df5cba90e1ec9f986992f5af063276c6250 /numpy | |
parent | 4e07a5b8e5065829fe74ed20da1196c7b4d4f590 (diff) | |
download | numpy-da4b745623f7f5fdc7cab23f01b7d7d1f22ccb50.tar.gz |
Add one full msvcrt version for 80 (for manifest generation).
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/distutils/mingw32ccompiler.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/numpy/distutils/mingw32ccompiler.py b/numpy/distutils/mingw32ccompiler.py index 86a9b137d..ca67a87f1 100644 --- a/numpy/distutils/mingw32ccompiler.py +++ b/numpy/distutils/mingw32ccompiler.py @@ -344,7 +344,10 @@ def _build_import_library_x86(): # 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 |