diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2007-07-25 21:47:16 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2007-07-25 21:47:16 +0000 |
commit | 468e6532a29e6302986a75cfe19eca7670c5a460 (patch) | |
tree | 7c2275f0c5c5ee3e271773ed592516e0e79b95d9 /numpy/distutils/command/build_clib.py | |
parent | 1f4f410baef0547e26dc68d1ea3c60d140602a15 (diff) | |
download | numpy-468e6532a29e6302986a75cfe19eca7670c5a460.tar.gz |
More fixes for building scipy with Mingw32 compilers.
Diffstat (limited to 'numpy/distutils/command/build_clib.py')
-rw-r--r-- | numpy/distutils/command/build_clib.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/numpy/distutils/command/build_clib.py b/numpy/distutils/command/build_clib.py index 5e6e45300..0d49d7ee8 100644 --- a/numpy/distutils/command/build_clib.py +++ b/numpy/distutils/command/build_clib.py @@ -77,7 +77,8 @@ class build_clib(old_build_clib): verbose=self.verbose, dry_run=self.dry_run, force=self.force, - requiref90='f90' in languages) + requiref90='f90' in languages, + c_compiler=self.compiler) if self.compiler is not None: self.fcompiler.customize(self.distribution) @@ -146,7 +147,8 @@ class build_clib(old_build_clib): verbose=self.verbose, dry_run=self.dry_run, force=self.force, - requiref90=requiref90) + requiref90=requiref90, + c_compiler=self.compiler) if fcompiler is not None: dist = self.distribution base_config_fc = dist.get_option_dict('config_fc').copy() |