google benchmark: Add variant with libpfm4 (#42620)
Signed-off-by: Steven Hahn <hahnse@ornl.gov>
This commit is contained in:
parent
8345c6fb85
commit
02f222f6a3
1 changed files with 11 additions and 1 deletions
|
@ -44,14 +44,24 @@ class Benchmark(CMakePackage):
|
|||
description="The build type to build",
|
||||
values=("Debug", "Release", "RelWithDebInfo", "MinSizeRel", "Coverage"),
|
||||
)
|
||||
variant(
|
||||
"performance_counters",
|
||||
default=True,
|
||||
when="@1.5.4:",
|
||||
description="Enable performance counters provided by libpfm",
|
||||
)
|
||||
|
||||
depends_on("cmake@2.8.11:", type="build", when="@:1.1.0")
|
||||
depends_on("cmake@2.8.12:", type="build", when="@1.2.0:1.4")
|
||||
depends_on("cmake@3.5.1:", type="build", when="@1.5.0:")
|
||||
depends_on("libpfm4", type=("build", "link"), when="+performance_counters")
|
||||
|
||||
def cmake_args(self):
|
||||
# No need for testing for the install
|
||||
args = ["-DBENCHMARK_ENABLE_TESTING=OFF"]
|
||||
args = [
|
||||
self.define("BENCHMARK_ENABLE_TESTING", False),
|
||||
self.define_from_variant("BENCHMARK_ENABLE_LIBPFM", "performance_counters"),
|
||||
]
|
||||
return args
|
||||
|
||||
def patch(self):
|
||||
|
|
Loading…
Reference in a new issue