diff options
Diffstat (limited to 'scipy_distutils/fcompiler.py')
-rw-r--r-- | scipy_distutils/fcompiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scipy_distutils/fcompiler.py b/scipy_distutils/fcompiler.py index 6a8dfeb67..a609e2512 100644 --- a/scipy_distutils/fcompiler.py +++ b/scipy_distutils/fcompiler.py @@ -501,7 +501,7 @@ class FCompiler(CCompiler): ext = os.path.splitext(src)[1] self.mkpath(os.path.dirname(obj)) build[obj] = src, ext - cc_args = self._get_cc_args(pp_opts, debug, extra_preargs) + cc_args = [] #self._get_cc_args(pp_opts, debug, extra_preargs) for obj, (src, ext) in build.items(): self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts) return objects |