views:

120

answers:

1

Using GNU make on Windows, what exactly does the load-average value represent?

For example:

make -j --load-average=2.5

What does the 2.5 mean?

+1  A: 

It means that make will not start any new thread until the number of runnable processes, averaged over some period of time is below 2.5.

mjv