[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Patch for port of jobserver to Windows
From: |
Eli Zaretskii |
Subject: |
Re: Patch for port of jobserver to Windows |
Date: |
Fri, 08 Oct 2010 09:39:53 +0200 |
> Date: Thu, 07 Oct 2010 21:33:14 +0000
> From: Greg Chicares <address@hidden>
>
> On 2010-10-07 20:43Z, Troy Runkel wrote:
> > I've ported the GNU make jobserver to the Windows platform.
>
> Didn't the jobserver work on ms windows already?
No. Parallel builds with -jN are indeed supported on Windows since
Make 3.81, but not the jobserver. The impact is that the sub-Make is
always invoked with -j1, unless you explicitly override that in the
sub-Make invocation command line.
> F:>make -j2 -f j.make
> ping -n 2 127.0.0.1 >NUL
> ping -n 2 127.0.0.1 >NUL
> echo "a"
> echo "b"
> a
> b
You have here only one level of recursion. To see the difference, you
need more than one.