blob: 5586df07c6cf92571af9e023bf0f0019f5dd7ea3 (
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
|
# 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 Pgmath(CMakePackage):
"""Flang's math library"""
homepage = "https://github.com/flang-compiler/flang"
url = "https://github.com/flang-compiler/flang/archive/flang_20180612.tar.gz"
git = "https://github.com/flang-compiler/flang.git"
version('develop', branch='master')
version('20180921', '4440ed5fdc390e4b7a085fb77b44ac54')
version('20180612', '62284e26214eaaff261a922c67f6878c')
depends_on("awk", type="build")
conflicts("%gcc@:7.1.9999")
root_cmakelists_dir = 'runtime/libpgmath'
|