summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/f18/package.py
blob: fce4359cf01e058e3fdbc8d244d827db186c7bb1 (plain) (blame)
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
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack import *


class F18(CMakePackage):
    """F18 is a front-end for Fortran intended to replace the existing front-end
    in the Flang compiler"""

    # Package information
    homepage = "https://github.com/flang-compiler/f18"
    git      = "https://github.com/flang-compiler/f18.git"

    version('master', branch='master')

    # Variants
    variant('build_type', default='Release',
            description='The build type to build',
            values=('Debug', 'Release', 'RelWithDebInfo'))

    # Dependencies
    depends_on('cmake@3.9.0:', type='build')
    depends_on('llvm+clang@7:')

    # Conflicts
    compiler_warning = 'F18 requires a compiler with support for C++17'
    conflicts('%clang@:6', msg=compiler_warning)
    conflicts('%gcc@:7.1', msg=compiler_warning)
    conflicts('%intel', msg=compiler_warning)
    conflicts('%pgi', msg=compiler_warning)