diff options
author | Nichols A. Romero <naromero77@users.noreply.github.com> | 2021-03-28 12:06:46 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-28 10:06:46 -0700 |
commit | 14c7a138938af05d09f7b2bb76ed887ffeccd811 (patch) | |
tree | bb649414b7efe82797feb06e0273f7f3f17036b7 | |
parent | d17b6c46017263826baa7348656d9f8dfea663d6 (diff) | |
download | spack-14c7a138938af05d09f7b2bb76ed887ffeccd811.tar.gz spack-14c7a138938af05d09f7b2bb76ed887ffeccd811.tar.bz2 spack-14c7a138938af05d09f7b2bb76ed887ffeccd811.tar.xz spack-14c7a138938af05d09f7b2bb76ed887ffeccd811.zip |
Flang default is False. Include a warning to deter people from using it. (#22524)
* Flang default is False. Include a warning to deter people from using it.
* Fix flake8 issue.
-rw-r--r-- | var/spack/repos/builtin/packages/llvm/package.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/llvm/package.py b/var/spack/repos/builtin/packages/llvm/package.py index 545ed559f9..7eea165821 100644 --- a/var/spack/repos/builtin/packages/llvm/package.py +++ b/var/spack/repos/builtin/packages/llvm/package.py @@ -67,8 +67,9 @@ class Llvm(CMakePackage, CudaPackage): ) variant( "flang", - default=True, - description="Build the LLVM Fortran compiler frontend", + default=False, + description="Build the LLVM Fortran compiler frontend " + "(experimental - parser only, needs GCC)", ) variant( "omp_debug", |