From ed8d95182bc994e31e730c59e1c8bfec4822b27d Mon Sep 17 00:00:00 2001 From: Fabiano Rosas Date: Wed, 3 May 2023 17:39:46 -0300 Subject: meson: Pass -j option to sphinx MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 (version >=1.7.0). 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. Tested-by: Daniel P. Berrangé Signed-off-by: Fabiano Rosas Message-Id: <20230503203947.3417-2-farosas@suse.de> Signed-off-by: Paolo Bonzini --- docs/sphinx/qmp_lexer.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'docs/sphinx/qmp_lexer.py') diff --git a/docs/sphinx/qmp_lexer.py b/docs/sphinx/qmp_lexer.py index f7e4c0e198..a59de8a079 100644 --- a/docs/sphinx/qmp_lexer.py +++ b/docs/sphinx/qmp_lexer.py @@ -41,3 +41,8 @@ def setup(sphinx): sphinx.add_lexer('QMP', QMPExampleLexer) except errors.VersionRequirementError: sphinx.add_lexer('QMP', QMPExampleLexer()) + + return dict( + parallel_read_safe = True, + parallel_write_safe = True + ) -- cgit 1.4.1