Daniel Marjamäki

Results 389 comments of Daniel Marjamäki

> The performance gains are just too big to delay this any longer. It looks really nice! Did you measure in Windows also? Do you have access to a Windows...

> Are the Linux binaries built with Boost? they used Cppcheck Premium binaries and these do not use boost. > From my own experience I would assume be that there...

> cppcheck -D__CPPCHECK__ -D__GNUC__ --showtime=file-total -jX lib For information.. when I run this command on my machine I get such timings: Linux: j1: Check time: lib/tokenize.cpp: 5.02091s j16: Check time:...

That `--executor=thread` output is really interesting. I wrote this script: ``` /opt/cppcheckpremium/cppcheck --executor=thread -D__CPPCHECK__ -D__GNUC__ --showtime=file-total -j1 lib > t1 /opt/cppcheckpremium/cppcheck --executor=thread -D__CPPCHECK__ -D__GNUC__ --showtime=file-total -j16 lib > t16 /opt/cppcheckpremium/cppcheck...

I don't know what happened but right now the times looks better. Here are times measured with `time`: ``` t1:real 1m5,429s t8:real 0m15,339s t16:real 0m13,304s p1:real 1m7,956s p8:real 0m16,380s p16:real...

> I backed out the debugpath changes for now. The size is now only reduced from 168 bytes to 152 bytes. Does it make sense to hide `debugpath` behind some...

I assume there is speedup but do you see it also?

I don't really see the idea right now neither. If the constant is only used in 1 file it does not hurt that it is defined there. you also made...

it looks good to me but I think @firewave should determine..

Thanks for working on this. I envision that this could mean that fewer pipelines will be queued and that you will get the CI result a little faster for your...