From acc790bd4a44d84ab4daca0745bf00c6e19f3c0f Mon Sep 17 00:00:00 2001 From: Alexander Taylor Date: Thu, 28 Mar 2024 12:37:15 -0400 Subject: Workaround for build failures on aarch64 linux. --- api-docs/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'api-docs') diff --git a/api-docs/Makefile b/api-docs/Makefile index b9522724..91295186 100644 --- a/api-docs/Makefile +++ b/api-docs/Makefile @@ -2,7 +2,11 @@ # # You can set these variables from the command line. -SPHINXOPTS ?= -j auto +SPHINXOPTS ?= -j 1 +# XXX: Line above is a workaround for parallel builds failing on ARM hosts +# See this issue for more details: https://github.com/sphinx-doc/sphinx/issues/11449 +# When that issue is resolved, put the following line back: +#SPHINXOPTS ?= -j auto SPHINXBUILD ?= sphinx-build DOC2DASH ?= doc2dash PAPER = -- cgit v1.3.1