From 7c62e71683de5672379f033664504eb10d431544 Mon Sep 17 00:00:00 2001 From: bones_was_here Date: Thu, 13 Jan 2022 01:26:38 +1000 Subject: [PATCH] Doxygen: disable CALL_GRAPH and CALLER_GRAPH Many of these graphs are too huge and complex to be readable, and they use > 8GiB on disk and a lot of CPU time to generate. They can be enabled for specific funcs if required. Signed-off-by: bones_was_here --- Doxyfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Doxyfile b/Doxyfile index 07b60ace..08ac3aac 100644 --- a/Doxyfile +++ b/Doxyfile @@ -1588,7 +1588,7 @@ EXT_LINKS_IN_WINDOW = NO # The default value is: png. # This tag requires that the tag GENERATE_HTML is set to YES. -HTML_FORMULA_FORMAT = png +HTML_FORMULA_FORMAT = svg # Use this tag to change the font size of LaTeX formulas included as images in # the HTML documentation. When you change the font size after a successful @@ -2464,7 +2464,7 @@ INCLUDED_BY_GRAPH = YES # The default value is: NO. # This tag requires that the tag HAVE_DOT is set to YES. -CALL_GRAPH = YES +CALL_GRAPH = NO # If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller # dependency graph for every global function or class method. @@ -2476,7 +2476,7 @@ CALL_GRAPH = YES # The default value is: NO. # This tag requires that the tag HAVE_DOT is set to YES. -CALLER_GRAPH = YES +CALLER_GRAPH = NO # If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical # hierarchy of all classes instead of a textual one. -- 2.39.2