diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2004-02-17 11:20:13 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2004-02-17 11:20:13 +0000 |
commit | 7c7526c87ab02d9eabe501f3c5aadc5aca49fbe1 (patch) | |
tree | eb2e5e5f16c3eb3284d2da2d96cc36036bd5688b /scipy_distutils/ccompiler.py | |
parent | a1b9fedeb7a87d9eed9eaa5243d61a5514681e9b (diff) | |
download | numpy-7c7526c87ab02d9eabe501f3c5aadc5aca49fbe1.tar.gz |
Forcing new_compiler provided by scipy_distutils (this should fix 'unable to load module' error when using --compiler=mingw32)
Diffstat (limited to 'scipy_distutils/ccompiler.py')
-rw-r--r-- | scipy_distutils/ccompiler.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scipy_distutils/ccompiler.py b/scipy_distutils/ccompiler.py index 288e92c1f..222a49723 100644 --- a/scipy_distutils/ccompiler.py +++ b/scipy_distutils/ccompiler.py @@ -165,3 +165,5 @@ def new_compiler (plat=None, print '*'*80 return compiler +ccompiler.new_compiler = new_compiler + |