示例#1
0
def find_pgfortran(conf):
    """Find the PGI fortran compiler (will look in the environment variable 'FC')"""
    fc = conf.find_program(['pgfortran', 'pgf95', 'pgf90'], var='FC')
    conf.get_pgfortran_version(fc)
    conf.env.FC_NAME = 'PGFC'
def find_pgfortran(conf):
	"""Find the PGI fortran compiler (will look in the environment variable 'FC')"""
	fc = conf.find_program(['pgfortran', 'pgf95', 'pgf90'], var='FC')
	fc = conf.cmd_to_list(fc)
	conf.get_pgfortran_version(fc)
	conf.env.FC_NAME = 'PGFC'
def find_pgfortran(conf):
    """Find the PGI fortran compiler (will look in the environment variable 'FC')"""
    fc = conf.find_program(["pgfortran", "pgf95", "pgf90"], var="FC")
    conf.get_pgfortran_version(fc)
    conf.env.FC_NAME = "PGFC"