compiler_fc

waflib.Tools.compiler_fc.fc_compiler = {'java': ['gfortran', 'g95', 'ifort'], 'aix': ['gfortran'], 'default': ['gfortran'], 'win32': ['gfortran', 'ifort'], 'linux': ['gfortran', 'g95', 'ifort'], 'darwin': ['gfortran', 'g95', 'ifort']}

Dict mapping the platform names to lists of names of Fortran compilers to try, in order of preference:

from waflib.Tools.compiler_c import c_compiler
c_compiler['linux'] = ['gfortran', 'g95', 'ifort']
waflib.Tools.compiler_fc.configure(conf)[source]

Try to find a suitable Fortran compiler or raise a waflib.Errors.ConfigurationError.

waflib.Tools.compiler_fc.options(opt)[source]

Restrict the compiler detection from the command-line:

$ waf configure --check-fortran-compiler=ifort