diff options
author | Glenn Johnson <glenn-johnson@uiowa.edu> | 2019-08-31 14:09:51 -0500 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2019-08-31 14:09:51 -0500 |
commit | ed6c9e8ed80ba909ea7e6b0407eb821157b37010 (patch) | |
tree | 95899e700daefe2ea63506be42cd07b3d30728b9 | |
parent | 4a5d740eafd4716dee86fc606148a818b09fefca (diff) | |
download | spack-ed6c9e8ed80ba909ea7e6b0407eb821157b37010.tar.gz spack-ed6c9e8ed80ba909ea7e6b0407eb821157b37010.tar.bz2 spack-ed6c9e8ed80ba909ea7e6b0407eb821157b37010.tar.xz spack-ed6c9e8ed80ba909ea7e6b0407eb821157b37010.zip |
Add conflicts statement to mariadb (#12670)
The mariadb-5.5 series can not be compiled with gcc-9.1.0 and above. Add
a conflicts statement to reflect that.
The error is due to -Werror=address-of-packed-member, a warning that is
new in gcc-9.
-rw-r--r-- | var/spack/repos/builtin/packages/mariadb/package.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/mariadb/package.py b/var/spack/repos/builtin/packages/mariadb/package.py index 54489486a5..f389e7d55f 100644 --- a/var/spack/repos/builtin/packages/mariadb/package.py +++ b/var/spack/repos/builtin/packages/mariadb/package.py @@ -35,3 +35,5 @@ class Mariadb(CMakePackage): depends_on('libevent', when='+nonblocking') depends_on('ncurses') depends_on('zlib') + + conflicts('%gcc@9.1.0:', when='@:5.5') |