diff options
author | David Robillard <d@drobilla.net> | 2019-03-17 18:43:09 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-03-17 19:02:31 +0100 |
commit | ca9f746af500be98f7c65b7f1bd0f50ad936a8b6 (patch) | |
tree | 789465df66ea327e642c3e80d690ed7e4a38b1a6 /waflib/extras/fc_nfort.py | |
parent | a7860f7e495583f536480a7cce2b6e0c55926f3a (diff) | |
parent | b2ca9626b290e8ab5bfa6269dfc7afe64a012ce1 (diff) | |
download | lv2-ca9f746af500be98f7c65b7f1bd0f50ad936a8b6.tar.xz |
Update autowaf and adapt to new API
Diffstat (limited to 'waflib/extras/fc_nfort.py')
-rw-r--r-- | waflib/extras/fc_nfort.py | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/waflib/extras/fc_nfort.py b/waflib/extras/fc_nfort.py new file mode 100644 index 0000000..c25886b --- /dev/null +++ b/waflib/extras/fc_nfort.py @@ -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() |