diff options
author | lukebroskop <luke.roskop@hpe.com> | 2021-05-07 14:24:35 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-07 19:24:35 +0000 |
commit | c175d24c0e5408bcf6d000780f743d9e898d466d (patch) | |
tree | 46e030d8233a1d94628d194f4f2264d5eefc41fc | |
parent | 5a7c339b0cc58e5ea75a1d32318e60560243c490 (diff) | |
download | spack-c175d24c0e5408bcf6d000780f743d9e898d466d.tar.gz spack-c175d24c0e5408bcf6d000780f743d9e898d466d.tar.bz2 spack-c175d24c0e5408bcf6d000780f743d9e898d466d.tar.xz spack-c175d24c0e5408bcf6d000780f743d9e898d466d.zip |
Add conflict for the CCE compiler (#23502)
Add conflict for the CCE compiler
-rw-r--r-- | var/spack/repos/builtin/packages/elfutils/package.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/elfutils/package.py b/var/spack/repos/builtin/packages/elfutils/package.py index 10fd616369..2ab092b541 100644 --- a/var/spack/repos/builtin/packages/elfutils/package.py +++ b/var/spack/repos/builtin/packages/elfutils/package.py @@ -74,6 +74,7 @@ class Elfutils(AutotoolsPackage, SourcewarePackage): # elfutils with gcc, and then link it to clang-built libraries. conflicts('%apple-clang') conflicts('%clang') + conflicts('%cce') # Elfutils uses -Wall and we don't want to fail the build over a # stray warning. |