diff options
author | David Cournapeau <cournape@gmail.com> | 2008-12-19 09:10:03 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-12-19 09:10:03 +0000 |
commit | 5cd369aa74ac3affc00041480ab068fb57a00da6 (patch) | |
tree | 9176866f06fffc28eb6720fc03cb035830099fa3 | |
parent | 479f75f1cf94aeb7ae90b7f55f3beff6871cacf1 (diff) | |
download | numpy-5cd369aa74ac3affc00041480ab068fb57a00da6.tar.gz |
Do not generate manifest when built with msver 8.*, it does not look like it is needed, and we dont support it anyway ATM.
-rw-r--r-- | numpy/distutils/mingw32ccompiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/mingw32ccompiler.py b/numpy/distutils/mingw32ccompiler.py index fb5684a90..0873bdc62 100644 --- a/numpy/distutils/mingw32ccompiler.py +++ b/numpy/distutils/mingw32ccompiler.py @@ -405,7 +405,7 @@ def rc_name(config): def generate_manifest(config): msver = get_build_msvc_version() if msver is not None: - if msver >= 8: + if msver >= 9: check_embedded_msvcr_match_linked(msver) ma = int(msver) mi = int((msver - ma) * 10) |