summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorGlenn Johnson <glenn-johnson@uiowa.edu>2020-01-04 22:47:06 -0600
committerAdam J. Stewart <ajstewart426@gmail.com>2020-01-04 22:47:06 -0600
commit8c8f3f228cb62c88d8e13f45be1ff5e60b3979d5 (patch)
treedbe65b32cd124dec436b538be40b5fc30feb6f01 /var
parent90f48604027a309c8b7704918e15f45610e1634e (diff)
downloadspack-8c8f3f228cb62c88d8e13f45be1ff5e60b3979d5.tar.gz
spack-8c8f3f228cb62c88d8e13f45be1ff5e60b3979d5.tar.bz2
spack-8c8f3f228cb62c88d8e13f45be1ff5e60b3979d5.tar.xz
spack-8c8f3f228cb62c88d8e13f45be1ff5e60b3979d5.zip
Adjust constraints of gcc-5 (#14388)
This PR adjusts the constraints on isl with GCC-5. GCC-5.1 and GCC-5.2 need isl-0.14, not isl-0.15.
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/gcc/package.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/gcc/package.py b/var/spack/repos/builtin/packages/gcc/package.py
index c026c609db..df87800ff2 100644
--- a/var/spack/repos/builtin/packages/gcc/package.py
+++ b/var/spack/repos/builtin/packages/gcc/package.py
@@ -96,7 +96,8 @@ class Gcc(AutotoolsPackage, GNUMirrorPackage):
# GCC 5.4 https://github.com/spack/spack/issues/6902#issuecomment-433072097
# GCC 7.3 https://github.com/spack/spack/issues/6902#issuecomment-433030376
# GCC 9+ https://gcc.gnu.org/bugzilla/show_bug.cgi?id=86724
- depends_on('isl@0.15', when='@5:5.9')
+ depends_on('isl@0.14', when='@5.0:5.2')
+ depends_on('isl@0.15', when='@5.3:5.9')
depends_on('isl@0.15:0.18', when='@6:8.9')
depends_on('isl@0.15:0.20', when='@9:')
depends_on('zlib', when='@6:')