Beispiel #1
0
def generate(env):
    """
    Add Builders and construction variables for the Visual Age FORTRAN
    compiler to an Environment.
    """
    f77.generate(env)

    env['F77'] = env.Detect(pcompilers) or 'f77'
    env['SHF77'] = env.Detect(rcompilers) or 'f77'
Beispiel #2
0
def generate(env):
    """
    Add Builders and construction variables for the Visual Age FORTRAN
    compiler to an Environment.
    """
    f77.generate(env)

    env['F77'] = env.Detect(pcompilers) or 'f77'
    env['SHF77'] = env.Detect(rcompilers) or 'f77'
Beispiel #3
0
def generate(env):
    """Add Builders and construction variables for ifl to an Environment."""
    f77.generate(env)

    env['F77']        = 'ifl'
    env['F77FLAGS']   = ''
    env['F77COM']     = '$F77 $F77FLAGS $_F77INCFLAGS /c $SOURCES /Fo$TARGET'
    env['F77PPCOM']   = '$F77 $F77FLAGS $CPPFLAGS $_F77INCFLAGS /c $SOURCES /Fo$TARGET'
    env['SHF77']      = '$F77'
    env['SHF77FLAGS'] = '$F77FLAGS'
    env['SHF77COM']   = '$SHF77 $SHF77FLAGS $_F77INCFLAGS /c $SOURCES /Fo$TARGET'
    env['SHF77PPCOM'] = '$SHF77 $SHF77FLAGS $CPPFLAGS $_F77INCFLAGS /c $SOURCES /Fo$TARGET'
Beispiel #4
0
def generate(env):
    """
    Add Builders and construction variables for the Visual Age FORTRAN
    compiler to an Environment.
    """
    path, _f77, _shf77, version = get_xlf77(env)
    if path:
        _f77 = os.path.join(path, _f77)
        _shf77 = os.path.join(path, _shf77)

    f77.generate(env)

    env['F77'] = _f77
    env['SHF77'] = _shf77
Beispiel #5
0
def generate(env):
    """
    Add Builders and construction variables for the Visual Age FORTRAN
    compiler to an Environment.
    """
    path, _f77, _shf77, version = get_xlf77(env)
    if path:
        _f77 = os.path.join(path, _f77)
        _shf77 = os.path.join(path, _shf77)

    f77.generate(env)

    env['F77'] = _f77
    env['SHF77'] = _shf77
Beispiel #6
0
def generate(env):
    """Add Builders and construction variables for g77 to an Environment."""
    f77.generate(env)

    env['F77'] = env.Detect(compilers) or 'g77'
Beispiel #7
0
def generate(env):
    """Add Builders and construction variables for g77 to an Environment."""
    f77.generate(env)

    env['_FORTRAND'] = env.Detect(compilers) or 'g77'
Beispiel #8
0
def generate(env):
    """Add Builders and construction variables for g77 to an Environment."""
    f77.generate(env)

    env["_FORTRAND"] = env.Detect(compilers) or "g77"