Skip to content
Federico Ceratto edited this page Apr 10, 2016 · 3 revisions

Embedded Stack Trace Profiler: http://nim-lang.org/docs/estp.html

Profiling Nim with Valgrind

# build your application as:
nim -d:release --debugger:native c application.nim

# profile calls with:
valgrind --tool=callgrind ./application

# terminate the application and visualize the calls with:
callgrind_annotate callgrind.out.<pid>
Clone this wiki locally