mirror of https://gitlab.com/ita1024/waf.git
53 lines
1.3 KiB
Python
53 lines
1.3 KiB
Python
#! /usr/bin/env python
|
|
# encoding: utf-8
|
|
# Detection of the NEC Fortran compiler for Aurora Tsubasa
|
|
|
|
import re
|
|
from waflib.Tools import fc,fc_config,fc_scan
|
|
from waflib.Configure import conf
|
|
from waflib.Tools.compiler_fc import fc_compiler
|
|
fc_compiler['linux'].append('fc_nfort')
|
|
|
|
@conf
|
|
def find_nfort(conf):
|
|
fc=conf.find_program(['nfort'],var='FC')
|
|
conf.get_nfort_version(fc)
|
|
conf.env.FC_NAME='NFORT'
|
|
conf.env.FC_MOD_CAPITALIZATION='lower'
|
|
|
|
@conf
|
|
def nfort_flags(conf):
|
|
v=conf.env
|
|
v['_FCMODOUTFLAGS']=[]
|
|
v['FCFLAGS_DEBUG']=[]
|
|
v['FCFLAGS_fcshlib']=[]
|
|
v['LINKFLAGS_fcshlib']=[]
|
|
v['FCSTLIB_MARKER']=''
|
|
v['FCSHLIB_MARKER']=''
|
|
|
|
@conf
|
|
def get_nfort_version(conf,fc):
|
|
version_re=re.compile(r"nfort\s*\(NFORT\)\s*(?P<major>\d+)\.(?P<minor>\d+)\.",re.I).search
|
|
cmd=fc+['--version']
|
|
out,err=fc_config.getoutput(conf,cmd,stdin=False)
|
|
if out:
|
|
match=version_re(out)
|
|
else:
|
|
match=version_re(err)
|
|
if not match:
|
|
return(False)
|
|
conf.fatal('Could not determine the NEC NFORT Fortran compiler version.')
|
|
else:
|
|
k=match.groupdict()
|
|
conf.env['FC_VERSION']=(k['major'],k['minor'])
|
|
|
|
def configure(conf):
|
|
conf.find_nfort()
|
|
conf.find_program('nar',var='AR')
|
|
conf.add_os_flags('ARFLAGS')
|
|
if not conf.env.ARFLAGS:
|
|
conf.env.ARFLAGS=['rcs']
|
|
conf.fc_flags()
|
|
conf.fc_add_flags()
|
|
conf.nfort_flags()
|