See Tracy Documentation: https://github.com/wolfpld/tracy/releases/latest/download/tracy.pdf
Install TracyServer
- git clone https://github.com/wolfpld/tracy
- cd profiler/build/unix
- Install capstone library and glfw:
- On Manjaro/Arch:
pamac install capstone glfw-x11
- make -j
- sudo mv Tracy-release /usr/local/bin/TracyServer
Usage in C++
#include <veriblock/pop/trace.hpp>
- At the beginning of your function use VBK_TRACE_ZONE_SCOPED or VBK_TRACE_ZONE_SCOPED_N (named):
{C++}
void foo() {
VBK_TRACE_ZONE_SCOPED;
}
void bar() {
VBK_TRACE_ZONE_SCOPED_N("MyBarFunction");
}
- Run CMake with
-DWITH_TRACER=ON
- Compile and run the code. Code can be installed to system, and used in vBTC without changes.
Run server
First, run TracyServer
and press "Connect".
Then, run your code.