mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-12-24 02:05:12 +01:00
Support for the Fortran Compiler of the NEC SX-Aurora TSUBASA system.
This commit is contained in:
parent
3d1744151f
commit
3dbf2ee7f8
52
waflib/extras/fc_nfort.py
Normal file
52
waflib/extras/fc_nfort.py
Normal file
@ -0,0 +1,52 @@
|
||||
#! /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()
|
Loading…
Reference in New Issue
Block a user