summaryrefslogtreecommitdiff
path: root/var/spack/packages/jemalloc/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/packages/jemalloc/package.py')
-rw-r--r--var/spack/packages/jemalloc/package.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/var/spack/packages/jemalloc/package.py b/var/spack/packages/jemalloc/package.py
new file mode 100644
index 0000000000..8cec9ea75b
--- /dev/null
+++ b/var/spack/packages/jemalloc/package.py
@@ -0,0 +1,24 @@
+from spack import *
+
+class Jemalloc(Package):
+ """jemalloc is a general purpose malloc(3) implementation that emphasizes fragmentation avoidance and scalable concurrency support."""
+ homepage = "http://www.canonware.com/jemalloc/"
+ url = "https://github.com/jemalloc/jemalloc/releases/download/4.0.4/jemalloc-4.0.4.tar.bz2"
+
+ version('4.0.4', '687c5cc53b9a7ab711ccd680351ff988')
+
+ variant('stats', default=False, description='Enable heap statistics')
+ variant('prof', default=False, description='Enable heap profiling')
+
+ def install(self, spec, prefix):
+ configure_args = ['--prefix=%s' % prefix,]
+
+ if '+stats' in spec:
+ configure_args.append('--enable-stats')
+ if '+prof' in spec:
+ configure_args.append('--enable-prof')
+
+ configure(*configure_args)
+
+ make()
+ make("install")