summaryrefslogtreecommitdiff
path: root/numpy/distutils/command/build_clib.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2011-08-20 11:13:08 -0600
committerCharles Harris <charlesr.harris@gmail.com>2011-08-20 11:13:08 -0600
commitea529d4081a38acf85a759dda25e3edf0bd307dc (patch)
treeb42da1d4d06352757b30d7001b34d5b790f36563 /numpy/distutils/command/build_clib.py
parentcdf1ff1d2f92582d5aa150573a056462341d2dcf (diff)
downloadnumpy-ea529d4081a38acf85a759dda25e3edf0bd307dc.tar.gz
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.
Diffstat (limited to 'numpy/distutils/command/build_clib.py')
-rw-r--r--numpy/distutils/command/build_clib.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/numpy/distutils/command/build_clib.py b/numpy/distutils/command/build_clib.py
index d9cfca73e..68f52b26e 100644
--- a/numpy/distutils/command/build_clib.py
+++ b/numpy/distutils/command/build_clib.py
@@ -177,10 +177,6 @@ class build_clib(old_build_clib):
raise DistutilsError("library %s has Fortran sources"\
" but no Fortran compiler found" % (lib_name))
- if fcompiler is not None:
- fcompiler.extra_f77_compile_args = build_info.get('extra_f77_compile_args') or []
- fcompiler.extra_f90_compile_args = build_info.get('extra_f90_compile_args') or []
-
macros = build_info.get('macros')
include_dirs = build_info.get('include_dirs')
if include_dirs is None: