diff options
author | David Cournapeau <cournape@gmail.com> | 2008-11-16 11:44:18 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-11-16 11:44:18 +0000 |
commit | ff611feb90d7bd130aa94634ba6e370f9227bf47 (patch) | |
tree | 3dca8197e8587e879dd321356298ba165b02a358 /numpy/distutils/mingw32ccompiler.py | |
parent | 10a973034d360f559809c97f120f42b7f450a20e (diff) | |
download | numpy-ff611feb90d7bd130aa94634ba6e370f9227bf47.tar.gz |
Add comment on how to get exact MSVCR version.
Diffstat (limited to 'numpy/distutils/mingw32ccompiler.py')
-rw-r--r-- | numpy/distutils/mingw32ccompiler.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/distutils/mingw32ccompiler.py b/numpy/distutils/mingw32ccompiler.py index 1a0c0612b..d0ff39653 100644 --- a/numpy/distutils/mingw32ccompiler.py +++ b/numpy/distutils/mingw32ccompiler.py @@ -237,7 +237,8 @@ def build_import_library(): # system. # XXX: ideally, we should use exactly the same version as used by python, but I -# have no idea how to obtain the exact version. +# 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"} def msvc_manifest_xml(maj, min): |