File: g95.py

package info (click to toggle)
pyinstaller 6.16.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 11,748 kB
  • sloc: python: 41,632; ansic: 11,944; makefile: 172; sh: 132; xml: 19
file content (70 lines) | stat: -rw-r--r-- 1,599 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#! /usr/bin/env python
# encoding: utf-8
# WARNING! Do not edit! https://waf.io/book/index.html#_obtaining_the_waf_file

import re
from waflib import Utils
from waflib.Tools import fc, fc_config, fc_scan, ar
from waflib.Configure import conf


@conf
def find_g95(conf):
    fc = conf.find_program('g95', var='FC')
    conf.get_g95_version(fc)
    conf.env.FC_NAME = 'G95'


@conf
def g95_flags(conf):
    v = conf.env
    v.FCFLAGS_fcshlib = ['-fPIC']
    v.FORTRANMODFLAG = ['-fmod=', '']
    v.FCFLAGS_DEBUG = ['-Werror']


@conf
def g95_modifier_win32(conf):
    fc_config.fortran_modifier_win32(conf)


@conf
def g95_modifier_cygwin(conf):
    fc_config.fortran_modifier_cygwin(conf)


@conf
def g95_modifier_darwin(conf):
    fc_config.fortran_modifier_darwin(conf)


@conf
def g95_modifier_platform(conf):
    dest_os = conf.env.DEST_OS or Utils.unversioned_sys_platform()
    g95_modifier_func = getattr(conf, 'g95_modifier_' + dest_os, None)
    if g95_modifier_func:
        g95_modifier_func()


@conf
def get_g95_version(conf, fc):
    version_re = re.compile(r"g95\s*(?P<major>\d*)\.(?P<minor>\d*)").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:
        conf.fatal('cannot determine g95 version')
    k = match.groupdict()
    conf.env.FC_VERSION = (k['major'], k['minor'])


def configure(conf):
    conf.find_g95()
    conf.find_ar()
    conf.fc_flags()
    conf.fc_add_flags()
    conf.g95_flags()
    conf.g95_modifier_platform()