[Mlir-commits] [mlir] 7deed49 - [mlir] use dynamic sections in MLIR Doxygen
Alex Zinenko
llvmlistbot at llvm.org
Fri May 13 02:43:57 PDT 2022
Author: Alex Zinenko
Date: 2022-05-13T11:43:52+02:00
New Revision: 7deed49ab9f06f581ced53e06737cbfae626a278
URL: https://github.com/llvm/llvm-project/commit/7deed49ab9f06f581ced53e06737cbfae626a278
DIFF: https://github.com/llvm/llvm-project/commit/7deed49ab9f06f581ced53e06737cbfae626a278.diff
LOG: [mlir] use dynamic sections in MLIR Doxygen
Due to an apparent bug in the Doxygen version <1.8.16 used to generate
documentation for MLIR, parts of the navigation (specifically, the lists
of inherited methods for classes) are unusable due to dynsections.js
missing from the output generated by Doxygen. Setting this flag makes
Doxygen always produce the file.
Added:
Modified:
mlir/docs/doxygen.cfg.in
Removed:
################################################################################
diff --git a/mlir/docs/doxygen.cfg.in b/mlir/docs/doxygen.cfg.in
index a0e4465c7dec0..b91b242cffaa2 100644
--- a/mlir/docs/doxygen.cfg.in
+++ b/mlir/docs/doxygen.cfg.in
@@ -1127,7 +1127,7 @@ HTML_TIMESTAMP = YES
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.
-HTML_DYNAMIC_SECTIONS = NO
+HTML_DYNAMIC_SECTIONS = YES
# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries
# shown in the various tree structured indices initially; the user can expand
More information about the Mlir-commits
mailing list