Skip to content

Commit b9b8fc4

Browse files
Add Documentation for Execution Results Handling in Clang-Repl (#65650)
[clang-repl] Add Documentation for Execution Results Handling. This patch adds documentation for execution results handling in Clang-REPL with the below features: - Automatic Printf feature - Value Synthesis feature - Pretty Printing feature Continuing this work https://reviews.llvm.org/D156858 with this PR. I am issuing this patch on behalf of Saqib. Reviewers: @vgvassilev @junaire
1 parent 7603c77 commit b9b8fc4

File tree

3 files changed

+413
-1
lines changed

3 files changed

+413
-1
lines changed

clang/docs/CMakeLists.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,13 @@ function (gen_rst_file_from_td output_file td_option source docs_targets)
103103
endfunction()
104104

105105
if (LLVM_ENABLE_SPHINX)
106+
llvm_find_program(dot)
107+
if (HAVE_DOT)
108+
set(DOT ${LLVM_PATH_DOT})
109+
else()
110+
message(FATAL_ERROR "Cannot find DOT")
111+
endif()
112+
106113
include(AddSphinxTarget)
107114
if (SPHINX_FOUND AND (${SPHINX_OUTPUT_HTML} OR ${SPHINX_OUTPUT_MAN}))
108115
# Copy rst files to build directory before generating the html

0 commit comments

Comments
 (0)