MetanoKid / cpp-build-analyzer

Analyzes MSVC C++ compilations with C++ Build Insights SDK
GNU General Public License v3.0
80 stars 2 forks source link

! added option to specify the format to display timings #52

Open mihaisebea opened 4 years ago

mihaisebea commented 4 years ago

! defaults to nanoseconds ! supports miliseconds and seconds

mihaisebea commented 4 years ago

Thank you very much for taking the time to review my work and for your amazing work.

MetanoKid commented 3 years ago

I've been running some tests and found an issue I had overlooked: any of the time units we select will only display the value as an integer. Say I prefer reasoning in seconds, so I decide to invoke it with s and then go check FunctionCompilations.csv or TemplateInstantiations.csv. Chances are I get a whole lot of 0 in all of the columns and I lose the ability to find out where my build is slow.

What I'd love it to be is:

I'm okay with having:

What do you think?