34 lines
1 KiB
Diff
34 lines
1 KiB
Diff
From 6372f261574a13f7a14bd8b55c45d2bedfd5e4c8 Mon Sep 17 00:00:00 2001
|
|
From: Mattias Ellert <mattias.ellert@physics.uu.se>
|
|
Date: Fri, 13 Sep 2024 16:24:54 +0200
|
|
Subject: [PATCH] Reproducible doxygen output.
|
|
|
|
The files generated by doxygen whose file names contain the string
|
|
unnamedN where N is a number are not generated using predictable
|
|
names.
|
|
|
|
This happens when running doxygen using multiple threads.
|
|
|
|
Set NUM_PROC_THREADS=1 to work around this issue.
|
|
|
|
See: https://github.com/doxygen/doxygen/issues/11138
|
|
---
|
|
Doxyfile | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/Doxyfile b/Doxyfile
|
|
index a85babb7c..f3bc4c524 100644
|
|
--- a/Doxyfile
|
|
+++ b/Doxyfile
|
|
@@ -492,7 +492,7 @@ LOOKUP_CACHE_SIZE = 2
|
|
# DOT_NUM_THREADS setting.
|
|
# Minimum value: 0, maximum value: 32, default value: 1.
|
|
|
|
-NUM_PROC_THREADS = 0
|
|
+NUM_PROC_THREADS = 1
|
|
|
|
# If the TIMESTAMP tag is set different from NO then each generated page will
|
|
# contain the date or date and time when the page was generated. Setting this to
|
|
--
|
|
2.46.0
|
|
|