From ea529d4081a38acf85a759dda25e3edf0bd307dc Mon Sep 17 00:00:00 2001 From: Charles Harris Date: Sat, 20 Aug 2011 11:13:08 -0600 Subject: BUG: Revert commit that causes many tests not to run. Revert "Introduce new options extra_f77_compiler_args and extra_f90_compiler_args to Configuration.add_extension. Configuration.add_library, and Extension. These options allow specifying extra compile options for compiling Fortran sources within a setup.py file." This reverts commit 43862759384a86cb4a95e8adb4d39fa1522acb28. --- numpy/distutils/command/build_ext.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'numpy/distutils/command/build_ext.py') diff --git a/numpy/distutils/command/build_ext.py b/numpy/distutils/command/build_ext.py index f63d5249c..840d43716 100644 --- a/numpy/distutils/command/build_ext.py +++ b/numpy/distutils/command/build_ext.py @@ -299,9 +299,6 @@ class build_ext (old_build_ext): fcompiler = self._f77_compiler else: # in case ext.language is c++, for instance fcompiler = self._f90_compiler or self._f77_compiler - if fcompiler is not None: - fcompiler.extra_f77_compile_args = ext.extra_f77_compile_args or [] - fcompiler.extra_f90_compile_args = ext.extra_f90_compile_args or [] cxx_compiler = self._cxx_compiler # check for the availability of required compilers -- cgit v1.2.1