diff options
author | albestro <9337627+albestro@users.noreply.github.com> | 2021-05-19 11:19:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-19 09:19:58 +0000 |
commit | 33df3990de3dc89fcdbefd1cb4b8bfe0b316f43a (patch) | |
tree | e5086263ed0b8c3d311c7d4823f2212e486c9253 | |
parent | 2894c241258d89fd2a4ef7ed057291a01d7e733f (diff) | |
download | spack-33df3990de3dc89fcdbefd1cb4b8bfe0b316f43a.tar.gz spack-33df3990de3dc89fcdbefd1cb4b8bfe0b316f43a.tar.bz2 spack-33df3990de3dc89fcdbefd1cb4b8bfe0b316f43a.tar.xz spack-33df3990de3dc89fcdbefd1cb4b8bfe0b316f43a.zip |
conflict for apple-clang building findutils (#23740)
-rw-r--r-- | var/spack/repos/builtin/packages/findutils/package.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/findutils/package.py b/var/spack/repos/builtin/packages/findutils/package.py index 2fe3a21e00..35e0f65eec 100644 --- a/var/spack/repos/builtin/packages/findutils/package.py +++ b/var/spack/repos/builtin/packages/findutils/package.py @@ -45,6 +45,10 @@ class Findutils(AutotoolsPackage, GNUMirrorPackage): version('4.1.20', sha256='8c5dd50a5ca54367fa186f6294b81ec7a365e36d670d9feac62227cb513e63ab') version('4.1', sha256='487ecc0a6c8c90634a11158f360977e5ce0a9a6701502da6cb96a5a7ec143fac') + # https://www.mail-archive.com/bug-findutils@gnu.org/msg06290.html + # not just on Catalina, same problem on Mojave with apple-clang@10.0.1 + conflicts('@4.8.0', when='%apple-clang') + # The NVIDIA compilers do not currently support some GNU builtins. # Detect this case and use the fallback path. patch('nvhpc.patch', when='@4.6.0 %nvhpc') |