Re: [PATCH v3] meson: Pass -j option to sphinx

2023-05-02 Thread Fabiano Rosas
Daniel P. Berrangé writes: > On Sat, Apr 29, 2023 at 02:33:17PM +0200, Paolo Bonzini wrote: >> On 4/28/23 17:01, Fabiano Rosas wrote: >> > Also make sure our plugins support parallelism and report it properly >> > to sphinx. Particularly, implement the merge_domaindata method in >> > DBusDomain t

Re: [PATCH v3] meson: Pass -j option to sphinx

2023-05-02 Thread Daniel P . Berrangé
On Sat, Apr 29, 2023 at 02:33:17PM +0200, Paolo Bonzini wrote: > On 4/28/23 17:01, Fabiano Rosas wrote: > > Also make sure our plugins support parallelism and report it properly > > to sphinx. Particularly, implement the merge_domaindata method in > > DBusDomain that is used to merge in data from o

Re: [PATCH v3] meson: Pass -j option to sphinx

2023-05-01 Thread Thomas Huth
On 28/04/2023 19.45, Fabiano Rosas wrote: Markus Armbruster writes: Fabiano Rosas writes: Save a bit of build time by passing the number of jobs option to sphinx. We cannot use the -j option from make because meson does not support setting build time parameters for custom targets. Use npro

Re: [PATCH v3] meson: Pass -j option to sphinx

2023-04-29 Thread Paolo Bonzini
On 4/28/23 17:01, Fabiano Rosas wrote: Also make sure our plugins support parallelism and report it properly to sphinx. Particularly, implement the merge_domaindata method in DBusDomain that is used to merge in data from other subprocesses. before: $ time make man html ... [1/2] Generat

Re: [PATCH v3] meson: Pass -j option to sphinx

2023-04-28 Thread Fabiano Rosas
Markus Armbruster writes: > Fabiano Rosas writes: > >> Save a bit of build time by passing the number of jobs option to >> sphinx. >> >> We cannot use the -j option from make because meson does not support >> setting build time parameters for custom targets. Use nproc instead or >> the equivalen

Re: [PATCH v3] meson: Pass -j option to sphinx

2023-04-28 Thread Markus Armbruster
Fabiano Rosas writes: > Save a bit of build time by passing the number of jobs option to > sphinx. > > We cannot use the -j option from make because meson does not support > setting build time parameters for custom targets. Use nproc instead or > the equivalent sphinx option "-j auto", if that is

Re: [PATCH v3] meson: Pass -j option to sphinx

2023-04-28 Thread Daniel P . Berrangé
On Fri, Apr 28, 2023 at 12:01:02PM -0300, Fabiano Rosas wrote: > Save a bit of build time by passing the number of jobs option to > sphinx. > > We cannot use the -j option from make because meson does not support > setting build time parameters for custom targets. Use nproc instead or > the equiva

[PATCH v3] meson: Pass -j option to sphinx

2023-04-28 Thread Fabiano Rosas
Save a bit of build time by passing the number of jobs option to sphinx. We cannot use the -j option from make because meson does not support setting build time parameters for custom targets. Use nproc instead or the equivalent sphinx option "-j auto", if that is available. Also make sure our plu