67 lines
3.1 KiB
Python
67 lines
3.1 KiB
Python
# Copyright 2013-2023 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.package import *
|
|
|
|
|
|
class TracyClient(CMakePackage):
|
|
"""A real time, nanosecond resolution, remote telemetry, hybrid frame and sampling
|
|
profiler for games and other applications. Client library."""
|
|
|
|
homepage = "https://github.com/wolfpld/tracy"
|
|
url = "https://github.com/wolfpld/tracy/archive/v0.0.0.tar.gz"
|
|
maintainers("msimberg")
|
|
|
|
license("BSD-3-Clause")
|
|
|
|
version("master", git="https://github.com/wolfpld/tracy.git", branch="master")
|
|
version("0.10", sha256="a76017d928f3f2727540fb950edd3b736caa97b12dbb4e5edce66542cbea6600")
|
|
version("0.9", sha256="93a91544e3d88f3bc4c405bad3dbc916ba951cdaadd5fcec1139af6fa56e6bfc")
|
|
version("0.8.2", sha256="4784eddd89c17a5fa030d408392992b3da3c503c872800e9d3746d985cfcc92a")
|
|
version("0.8.1", sha256="004992012b2dc879a9f6d143cbf94d7ea30e88135db3ef08951605d214892891")
|
|
|
|
variant("shared", default=True, description="Build the client library as a shared library")
|
|
|
|
tracy_options = {
|
|
"enable": (True, "Enable profiling"),
|
|
"on_demand": (False, "On-demand profiling"),
|
|
"callstack": (False, "Enfore callstack collection for tracy regions"),
|
|
"no_callstack": (False, "Disable all callstack related functionality"),
|
|
"no_callstack_inlines": (False, "Disables the inline functions in callstacks"),
|
|
"only_localhost": (False, "Only listen on the localhost interface"),
|
|
"no_broadcast": (False, "Disable client discovery by broadcast to local network"),
|
|
"only_ipv4": (
|
|
False,
|
|
"Tracy will only accept connections on IPv4 addresses (disable IPv6)",
|
|
),
|
|
"no_code_transfer": (False, "Disable collection of source code"),
|
|
"no_context_switch": (False, "Disable capture of context switches"),
|
|
"no_exit": (
|
|
False,
|
|
"Client executable does not exit until all profile data is sent to server",
|
|
),
|
|
"no_sampling": (False, "Disable call stack sampling"),
|
|
"no_verify": (False, "Disable zone validation for C API"),
|
|
"no_vsync_capture": (False, "Disable capture of hardware Vsync events"),
|
|
"no_frame_image": (False, "Disable the frame image support and its thread"),
|
|
"no_system_tracing": (False, "Disable systrace sampling"),
|
|
"delayed_init": (
|
|
False,
|
|
"Enable delayed initialization of the library (init on first call)",
|
|
),
|
|
"manual_lifetime": (False, "Enable the manual lifetime management of the profile"),
|
|
"fibers": (False, "Enable fibers support"),
|
|
"no_crash_handler": (False, "Disable crash handling"),
|
|
"timer_fallback": (False, "Use lower resolution timers"),
|
|
}
|
|
|
|
for k, v in tracy_options.items():
|
|
variant(k, default=v[0], description=v[1])
|
|
|
|
def cmake_args(self):
|
|
args = [self.define_from_variant("TRACY_%s" % k.upper(), k) for k in self.tracy_options]
|
|
args.append(self.define_from_variant("BUILD_SHARED_LIBS", "shared"))
|
|
return args
|