Lines Matching +full:build +full:- +full:docs
8 system to create HTML pages which are hosted on <https://llvm.org/docs/> and
12 Sphinx <http://sphinx-doc.org/> and then do:
14 cd <build-dir>
15 cmake -DLLVM_ENABLE_SPHINX=true -DSPHINX_OUTPUT_HTML=true <src-dir>
16 make -j3 docs-llvm-html
17 $BROWSER <build-dir>/docs/html/index.html
20 `docs/Foo.rst` <-> `<build-dir>/docs//html/Foo.html` <-> `https://llvm.org/docs/Foo.html`.
33 directory `<build-dir>/docs/man/`.
35 cd <build-dir>
36 cmake -DLLVM_ENABLE_SPHINX=true -DSPHINX_OUTPUT_MAN=true <src-dir>
37 make -j3 docs-llvm-man
38 man -l <build-dir>/docs/man/FileCheck.1
41 `docs/CommandGuide/Foo.rst` <-> `<build-dir>/docs//man/Foo.1`.
44 `https://llvm.org/docs/CommandGuide/Foo.html`.
52 cd llvm/docs/
53 sphinx-build -b linkcheck . _build/lintcheck/
61 cd <build-dir>
62 cmake -DLLVM_ENABLE_DOXYGEN=On <llvm-top-src-dir>
63 make doxygen-llvm # for LLVM docs
64 make doxygen-clang # for clang docs
68 <build-dir>/docs/doxygen/html # for LLVM docs
69 <build-dir>/tools/clang/docs/doxygen/html # for clang docs