Re: [dpdk-dev] [PATCH 1/4] doc/api: hide verbose doxygen standard output

2020-09-29 Thread Bruce Richardson
On Tue, Sep 29, 2020 at 06:31:49PM +0200, Thomas Monjalon wrote: > 29/09/2020 18:23, Bruce Richardson: > > On Tue, Sep 29, 2020 at 05:55:44PM +0200, Thomas Monjalon wrote: > > > > The standard output of doxygen is very verbose, and since ninja mixes > > > > stdout and stderr together it makes it di

Re: [dpdk-dev] [PATCH 1/4] doc/api: hide verbose doxygen standard output

2020-09-29 Thread Thomas Monjalon
29/09/2020 18:23, Bruce Richardson: > On Tue, Sep 29, 2020 at 05:55:44PM +0200, Thomas Monjalon wrote: > > > The standard output of doxygen is very verbose, and since ninja mixes > > > stdout and stderr together it makes it difficult to see any warnings from > > > the doxygen run. Therefore, we can

Re: [dpdk-dev] [PATCH 1/4] doc/api: hide verbose doxygen standard output

2020-09-29 Thread Bruce Richardson
On Tue, Sep 29, 2020 at 05:55:44PM +0200, Thomas Monjalon wrote: > > The standard output of doxygen is very verbose, and since ninja mixes > > stdout and stderr together it makes it difficult to see any warnings from > > the doxygen run. Therefore, we can just log the standard output to file, > > a

Re: [dpdk-dev] [PATCH 1/4] doc/api: hide verbose doxygen standard output

2020-09-29 Thread Thomas Monjalon
> The standard output of doxygen is very verbose, and since ninja mixes > stdout and stderr together it makes it difficult to see any warnings from > the doxygen run. Therefore, we can just log the standard output to file, > and only output the stderr to make warnings clear. [...] > -doxygen "${DOX

[dpdk-dev] [PATCH 1/4] doc/api: hide verbose doxygen standard output

2020-09-29 Thread Bruce Richardson
The standard output of doxygen is very verbose, and since ninja mixes stdout and stderr together it makes it difficult to see any warnings from the doxygen run. Therefore, we can just log the standard output to file, and only output the stderr to make warnings clear. Suggested-by: Thomas Monjalon