mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Fix to parallel builds
Hax the C++ domain to support parallel builds when it's not used. See sphinx-build/sphinx#2130.
This commit is contained in:
parent
89d7ab6941
commit
c286917f53
@ -3713,8 +3713,12 @@ class CPPDomain(Domain):
|
||||
# print(self.data['rootSymbol'].dump(0))
|
||||
pass
|
||||
|
||||
# def merge_domaindata(self, docnames, otherdata):
|
||||
# # TODO: merge rootSymbol
|
||||
def merge_domaindata(self, docnames, otherdata):
|
||||
theirRoot = self.data['rootSymbol']
|
||||
assert theirRoot is not None
|
||||
if theirRoot.parent is not None:
|
||||
raise NotImplementedError()
|
||||
# TODO: do the actual merging
|
||||
|
||||
def _resolve_xref_inner(self, env, fromdocname, builder,
|
||||
target, node, contnode, emitWarnings=True):
|
||||
|
Loading…
Reference in New Issue
Block a user