diff options
| author | cookedm <cookedm@localhost> | 2007-09-25 15:57:55 +0000 |
|---|---|---|
| committer | cookedm <cookedm@localhost> | 2007-09-25 15:57:55 +0000 |
| commit | 38cb2ac1c22916d6426055b11e9e870d3f5f7f10 (patch) | |
| tree | 567a968379f542b63c61cbc4e2ca48194737316e /numpy/distutils/ccompiler.py | |
| parent | 0d9ad16b305a3f2e2e662a8dc93775d1e7b7ca22 (diff) | |
| download | numpy-38cb2ac1c22916d6426055b11e9e870d3f5f7f10.tar.gz | |
Add msvccompiler to those injected with gen_lib_options
Diffstat (limited to 'numpy/distutils/ccompiler.py')
| -rw-r--r-- | numpy/distutils/ccompiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/ccompiler.py b/numpy/distutils/ccompiler.py index ebf2af479..bf38131d4 100644 --- a/numpy/distutils/ccompiler.py +++ b/numpy/distutils/ccompiler.py @@ -387,7 +387,7 @@ ccompiler.gen_lib_options = gen_lib_options # Also fix up the various compiler modules, which do # from distutils.ccompiler import gen_lib_options # Don't bother with mwerks, as we don't support Classic Mac. -for _cc in ['bcpp', 'cygwinc', 'emxc', 'unixc']: +for _cc in ['msvc', 'bcpp', 'cygwinc', 'emxc', 'unixc']: _m = __import__('distutils.'+_cc+'compiler') setattr(getattr(_m, _cc+'compiler'), 'gen_lib_options', gen_lib_options) |
