Got a new PC @ work. IT dept. did a quite good job in terms of annoyance:
This is a compile run (Makefile etc.) ran on the new PC (Core i5-8500, 8GB, SSD, Win10):
cygwin> time make
...
real 12m42.805s
user 1m33.628s
sys 3m45.193s
The very same job on the old one (Core i7-3770, 8GB, HDD, Win7):
cygwin> time make
...
real 6m58.280s
user 1m13.999s
sys 1m59.115s
Yes, I know, cygwin is known to be slower than native, just for comparison the same job natively (Core i5-6500T, 8GB, SSD, Debian)
> time make
...
real 1m50.209s
user 5m50.816s
sys 0m40.377s
>
No, I didn't swap any of these results. Native debian beats cygwin - that's what one would expect anyway (factor 3 to 6, WTF?), but 7yr old machine beats 1/2yr old machine by nearly a factor of two, even though the new machine has a SSD and the old one doesn't?