From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=unavailable autolearn_force=no version=3.4.4 X-Received: by 2002:a37:4d14:: with SMTP id a20mr91797649qkb.87.1560966869262; Wed, 19 Jun 2019 10:54:29 -0700 (PDT) X-Received: by 2002:aca:5ac6:: with SMTP id o189mr3068572oib.37.1560966868832; Wed, 19 Jun 2019 10:54:28 -0700 (PDT) Path: eternal-september.org!reader01.eternal-september.org!feeder.eternal-september.org!news.gegeweb.eu!gegeweb.org!usenet-fr.net!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!m24no3658930qtm.0!news-out.google.com!33ni170qtt.0!nntp.google.com!m24no3658921qtm.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Wed, 19 Jun 2019 10:54:28 -0700 (PDT) In-Reply-To: <1cdbc5f8-e58c-45c8-a30e-781c2c18244c@googlegroups.com> Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=76.77.182.20; posting-account=W2gdXQoAAADxIuhBWhPFjUps3wUp4RhQ NNTP-Posting-Host: 76.77.182.20 References: <6f1fcde3-fcf3-4a20-a1ee-b9c434de346a@googlegroups.com> <1cdbc5f8-e58c-45c8-a30e-781c2c18244c@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: Re: gprbuild -j8 on Windows 8.1? From: Stephen Leake Injection-Date: Wed, 19 Jun 2019 17:54:29 +0000 Content-Type: text/plain; charset="UTF-8" Xref: reader01.eternal-september.org comp.lang.ada:56686 Date: 2019-06-19T10:54:28-07:00 List-Id: On Sunday, June 16, 2019 at 10:54:16 PM UTC-7, Fraser Wilson wrote: > On Thursday, 13 June 2019 05:10:04 UTC+2, Stephen Leake wrote: > > I'm using GNAT Community 2018. > > > > I have a main program that takes an annoyingly long time to compile, so I tried > > > > gprbuild -j8 > > > > But it's no faster, and Windows Task Manager says it's using only one processor. > > > > Is this just broken on Windows? > > > > Does using AdaCores "bash implemented in Ada" help? > > > > -- Stephe > > Is it just the main program? -j builds separate sources in parallel, but won't help with individual files. yes, that's it. The main program does lots of generic instantiation, so it's slow. thanks.