summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@gmail.com>2022-05-10 01:41:01 -0400
committerGitHub <noreply@github.com>2022-05-10 07:41:01 +0200
commit359229f5f86521a74590c730fe6bc4359f2fd521 (patch)
tree4076631d2098cde2922f6d37a7497909f53f24cb /var
parent2db545ffdcd59644b08f3f0cacfa3dd21e411436 (diff)
downloadspack-359229f5f86521a74590c730fe6bc4359f2fd521.tar.gz
spack-359229f5f86521a74590c730fe6bc4359f2fd521.tar.bz2
spack-359229f5f86521a74590c730fe6bc4359f2fd521.tar.xz
spack-359229f5f86521a74590c730fe6bc4359f2fd521.zip
memkind: conflicts with jemalloc (#30070)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/memkind/package.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/memkind/package.py b/var/spack/repos/builtin/packages/memkind/package.py
index 612f0ebe9a..c2dcf33e28 100644
--- a/var/spack/repos/builtin/packages/memkind/package.py
+++ b/var/spack/repos/builtin/packages/memkind/package.py
@@ -38,6 +38,10 @@ class Memkind(AutotoolsPackage):
depends_on('m4', type='build')
depends_on('numactl')
+ # memkind includes a copy of jemalloc; see
+ # <https://github.com/memkind/memkind#jemalloc>.
+ conflicts('jemalloc')
+
def patch(self):
with open('VERSION', 'w') as version_file:
version_file.write('{0}\n'.format(self.version))