diff options
Diffstat (limited to 'numpy/distutils/fcompiler/none.py')
-rw-r--r-- | numpy/distutils/fcompiler/none.py | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/numpy/distutils/fcompiler/none.py b/numpy/distutils/fcompiler/none.py index c38b9f1ac..e80613883 100644 --- a/numpy/distutils/fcompiler/none.py +++ b/numpy/distutils/fcompiler/none.py @@ -1,19 +1,26 @@ from numpy.distutils.fcompiler import FCompiler +compilers = ['NoneFCompiler'] + class NoneFCompiler(FCompiler): compiler_type = 'none' + description = 'Fake Fortran compiler' - executables = {'compiler_f77':['/path/to/nowhere/none'], - 'compiler_f90':['/path/to/nowhere/none'], - 'compiler_fix':['/path/to/nowhere/none'], - 'linker_so':['/path/to/nowhere/none'], - 'archiver':['/path/to/nowhere/none'], - 'ranlib':['/path/to/nowhere/none'], - 'version_cmd':['/path/to/nowhere/none'], + executables = {'compiler_f77' : None, + 'compiler_f90' : None, + 'compiler_fix' : None, + 'linker_so' : None, + 'linker_exe' : None, + 'archiver' : None, + 'ranlib' : None, + 'version_cmd' : None, } + def find_executables(self): + pass + if __name__ == '__main__': from distutils import log |