It seems that a lot of the profilers people use for their nim executables aren't available for mac's, so what do you mac users use? I've tried nim's nimprof but what I'm interested in this the time spent in each proc, not the number of times a proc was called.
I guess I could do something manually by calculating the time a proc was entered and exited within the proc itself, and update a global var, and do that for each each proc and then echo the results at the end for each proc? Thanks in advance :)