Beispiel #1
0
def find_gfortran(conf):
    """Find the gfortran program (will look in the environment variable 'FC')"""
    fc = conf.find_program(["gfortran", "g77"], var="FC")
    # (fallback to g77 for systems, where no gfortran is available)
    fc = conf.cmd_to_list(fc)
    conf.get_gfortran_version(fc)
    conf.env.FC_NAME = "GFORTRAN"
Beispiel #2
0
def find_gfortran(conf):
    """Find the gfortran program (will look in the environment variable 'FC')"""
    fc = conf.find_program(['gfortran', 'g77'], var='FC')
    # (fallback to g77 for systems, where no gfortran is available)
    fc = conf.cmd_to_list(fc)
    conf.get_gfortran_version(fc)
    conf.env.FC_NAME = 'GFORTRAN'
Beispiel #3
0
def find_gfortran(conf):
    fc = conf.find_program(['gfortran', 'g77'], var='FC')
    conf.get_gfortran_version(fc)
    conf.env.FC_NAME = 'GFORTRAN'
Beispiel #4
0
def find_gfortran(conf):
	"""Find the gfortran program (will look in the environment variable 'FC')"""
	fc = conf.find_program('gfortran', var='FC')
	fc = conf.cmd_to_list(fc)
	conf.get_gfortran_version(fc)
	conf.env.FC_NAME = 'GFORTRAN'
Beispiel #5
0
def find_gfortran(conf):
    """Find the gfortran program (will look in the environment variable 'FC')"""
    fc = conf.find_program(["gfortran", "g77"], var="FC")
    # (fallback to g77 for systems, where no gfortran is available)
    conf.get_gfortran_version(fc)
    conf.env.FC_NAME = "GFORTRAN"
Beispiel #6
0
def find_gfortran(conf):
	fc = conf.find_program('gfortran', var='FC')
	fc = conf.cmd_to_list(fc)
	conf.get_gfortran_version(fc)
	conf.env.FC_NAME = 'GFORTRAN'
Beispiel #7
0
def find_gfortran(conf):
	fc=conf.find_program(['gfortran','g77'],var='FC')
	conf.get_gfortran_version(fc)
	conf.env.FC_NAME='GFORTRAN'
Beispiel #8
0
def find_gfortran(conf):
	"""Find the gfortran program (will look in the environment variable 'FC')"""
	fc = conf.find_program(['gfortran','g77'], var='FC')
	# (fallback to g77 for systems, where no gfortran is available)
	conf.get_gfortran_version(fc)
	conf.env.FC_NAME = 'GFORTRAN'