heaptrack: added new package at version 1.1.0 (#12844)
This commit is contained in:
parent
6dd9dbc071
commit
6cd5edacca
1 changed files with 36 additions and 0 deletions
36
var/spack/repos/builtin/packages/heaptrack/package.py
Normal file
36
var/spack/repos/builtin/packages/heaptrack/package.py
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
||||||
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
||||||
|
from spack import *
|
||||||
|
|
||||||
|
|
||||||
|
class Heaptrack(CMakePackage):
|
||||||
|
"""Heaptrack is a heap memory profiler that traces all memory allocations
|
||||||
|
and annotates these events with stack traces.
|
||||||
|
"""
|
||||||
|
|
||||||
|
homepage = "https://github.com/KDE/heaptrack"
|
||||||
|
url = "https://github.com/KDE/heaptrack/archive/v1.1.0.tar.gz"
|
||||||
|
|
||||||
|
version('1.1.0', sha256='bd247ac67d1ecf023ec7e2a2888764bfc03e2f8b24876928ca6aa0cdb3a07309')
|
||||||
|
|
||||||
|
depends_on('boost@1.41:')
|
||||||
|
depends_on('cmake@2.8.9:')
|
||||||
|
depends_on('elfutils')
|
||||||
|
depends_on('libunwind')
|
||||||
|
depends_on('zlib')
|
||||||
|
depends_on('zstd')
|
||||||
|
|
||||||
|
def cmake_args(self):
|
||||||
|
|
||||||
|
spec = self.spec
|
||||||
|
|
||||||
|
cmake_args = [
|
||||||
|
"-DBOOST_ROOT={0}".format(spec['boost'].prefix),
|
||||||
|
"-DBOOST_LIBRARY_DIR={0}".format(spec['boost'].prefix.lib),
|
||||||
|
"-DBOOST_INCLUDE_DIR={0}".format(spec['boost'].prefix.include),
|
||||||
|
"-DBOOST_NO_SYSTEM_PATHS:BOOL=ON",
|
||||||
|
"-DBoost_NO_BOOST_CMAKE:BOOL=ON",
|
||||||
|
]
|
||||||
|
return cmake_args
|
Loading…
Reference in a new issue