/llvm-project/llvm/docs/ |
H A D | README.txt | 1 LLVM Documentation 4 LLVM's documentation is written in reStructuredText, a lightweight 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`. 31 primary difference is to use the `man` makefile target, instead of the [all …]
|
H A D | CMakeLists.txt | 29 set(LLVM_DOXYGEN_QCH_FILENAME "org.llvm.qch" CACHE STRING 31 set(LLVM_DOXYGEN_QHP_NAMESPACE "org.llvm" CACHE STRING 34 "See http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom-filters") 36 "See http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes") 86 add_custom_target(doxygen-llvm 89 COMMENT "Generating llvm doxygen documentation." VERBATIM) 90 set_target_properties(doxygen-llvm PROPERTIES FOLDER "LLVM/Docs") 93 add_dependencies(doxygen doxygen-llvm) 100 COMPONENT doxygen-html 110 add_sphinx_target(html llvm) [all …]
|
H A D | conf.py | 1 # -*- coding: utf-8 -*- 3 # LLVM documentation build configuration file. 22 # -- General configuration -- [all...] |
H A D | doxygen.cfg.in | 16 #--------------------------------------------------------------------------- 18 #--------------------------------------------------------------------------- 21 # that follow. The default is UTF-8 which is also the encoding used for all text 25 # The default value is: UTF-8. 27 DOXYFILE_ENCODING = UTF-8 30 # double-quotes, unless you are using Doxywizard) that should identify the 35 PROJECT_NAME = LLVM 63 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub- 77 # Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), 79 # Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), [all …]
|
H A D | CMake.rst | 2 Building LLVM with CMake 11 `CMake <http://www.cmake.org/>`_ is a cross-platform build-generator tool. CMake 13 (GNU make, Visual Studio, etc.) for building LLVM. 19 If you are really anxious about getting a functional LLVM build, go to the 25 This page is geared towards users of the LLVM CMake build. If you're looking for 26 information about modifying the LLVM CMake build system you may want to see the 34 We use here the command-line, non-interactive CMake interface. 42 #. Create a build directory. Building LLVM i [all...] |
/llvm-project/openmp/docs/ |
H A D | README.txt | 1 OpenMP LLVM Documentation 4 OpenMP LLVM's documentation is written in reStructuredText, a lightweight 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 -DCMAKE_MODULE_PATH=/path/to/llvm/cmake/… 16 make docs-openmp-html 17 $BROWSER <build-dir>/docs/html/index.html 20 `docs/Foo.rst` <-> `<build-dir>/projects/openmp/docs//html/Foo.html` <-> 21 `https://openmp.llvm.org/docs/Foo.html`. [all …]
|
H A D | CMakeLists.txt | 27 set(OPENMP_DOXYGEN_QCH_FILENAME "org.llvm.openmp.qch" CACHE STRING 29 set(OPENMP_DOXYGEN_QHP_NAMESPACE "org.llvm.openmp" CACHE STRING 32 "See http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom-filters") 34 "See http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes") 77 add_custom_target(doxygen-openmp 81 set_target_properties(doxygen-openmp PROPERTIES FOLDER "OpenMP/Docs") 84 add_dependencies(doxygen doxygen-openmp) 89 DESTINATION docs/html) 101 add_sphinx_target(man openmp)
|
H A D | doxygen.cfg.in | 16 #--------------------------------------------------------------------------- 18 #--------------------------------------------------------------------------- 21 # that follow. The default is UTF-8 which is also the encoding used for all text 25 # The default value is: UTF-8. 27 DOXYFILE_ENCODING = UTF-8 30 # double-quotes, unless you are using Doxywizard) that should identify the 35 PROJECT_NAME = "LLVM OpenMP" 63 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub- 77 # Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), 79 # Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), [all …]
|
/llvm-project/.github/workflows/ |
H A D | docs.yml | 1 # LLVM Documentation CI 2 # Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 3 # See https://llvm.org/LICENSE.txt for license information. 4 # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 14 - 'mai [all...] |
/llvm-project/llvm/cmake/modules/ |
H A D | AddSphinxTarget.cmake | 9 set_target_properties(sphinx PROPERTIES FOLDER "LLVM/Docs") 19 # the sphinx-build command. 30 set(SPHINX_DOC_TREE_DIR "${CMAKE_CURRENT_BINARY_DIR}/_doctrees-${project}-${builder}") 31 set(SPHINX_TARGET_NAME docs-${project}-${builder}) 34 set(SPHINX_WARNINGS_AS_ERRORS_FLAG "-W") 44 set(PreReleaseTag "-tPreRelease") 48 COMMAND ${CMAKE_COMMAND} -E env ${ARG_ENV_VARS} 50 -b ${builder} 51 -d "${SPHINX_DOC_TREE_DIR}" 52 -q # Quiet: no output other than errors and warnings. [all …]
|
/llvm-project/clang/docs/ |
H A D | CMakeLists.txt | 27 set(CLANG_DOXYGEN_QCH_FILENAME "org.llvm.clang.qch" CACHE STRING 29 set(CLANG_DOXYGEN_QHP_NAMESPACE "org.llvm.clang" CACHE STRING 32 "See http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom-filters") 34 "See http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes") 77 add_custom_target(doxygen-clang 81 set_target_properties(doxygen-clan [all...] |
H A D | conf.py | 1 # -*- coding: utf-8 -*- 4 # sphinx-quickstart on Sun Dec 9 20:01:55 2012. 23 # -- General configuration ----------------------------------------------------- 38 # When building man pages, we do not use the markdown pages, 40 # Doing so reduces dependencies of some packaged llvm distributions. 46 if not tags.has("builder-man"): 51 # source_encoding = 'utf-8-sig' 58 copyright = "2007-%d, The Clang Team" % date.today().year 65 # non-false value, then it is used: 77 # If true, '()' will be appended to :func: etc. cross-reference text. [all …]
|
/llvm-project/lldb/docs/ |
H A D | index.rst | 8 LLDB is a next generation, high-performance debugger. It is built as a set of 10 `LLVM Project <https://llvm.org>`_, such as the Clang expression parser and 11 LLVM disassembler. 14 Objective-C and C++ on the desktop and iOS devices and simulator. 17 `"Apache 2.0 License with LLVM exceptions"`_. 19 .. _"Apache 2.0 License with LLVM exceptions": https://llvm.org/docs/DeveloperPolicy.html#new-llv [all...] |
H A D | conf.py | 1 # -*- coding: utf-8 -*- 4 # sphinx-quickstart on Sun Dec 9 20:01:55 2012. 17 sys.path.insert(0, os.path.abspath(os.path.join("..", "..", "llvm", "docs"))) 19 building_man_page = tags.has("builder-man") [all...] |
H A D | doxygen.cfg.in | 13 #--------------------------------------------------------------------------- 15 #--------------------------------------------------------------------------- 18 # that follow. The default is UTF-8 which is also the encoding used for all 23 DOXYFILE_ENCODING = UTF-8 41 OUTPUT_DIRECTORY = @abs_top_builddir@/docs/cpp_reference 44 # 4096 sub-directories (in 2 levels) under the output directory of each output 56 # Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, 58 # Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English 59 # messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, 60 # Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrilic, Slovak, [all …]
|
/llvm-project/flang/docs/ |
H A D | CMakeLists.txt | 28 set(FLANG_DOXYGEN_QCH_FILENAME "org.llvm.flang.qch" CACHE STRING 30 set(FLANG_DOXYGEN_QHP_NAMESPACE "org.llvm.flang" CACHE STRING 33 "See http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom-filters") 35 "See http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes") 78 add_custom_target(doxygen-flang 82 set_target_properties(doxygen-flang PROPERTIES FOLDER "Flang/Docs") 84 add_dependencies(doxygen doxygen-flang) 89 DESTINATION docs/html) 99 list(APPEND LLVM_TABLEGEN_FLAGS "-I${TABLEGEN_INCLUDE_DIR}") 100 list(APPEND LLVM_TABLEGEN_FLAGS "-I${CMAKE_CURRENT_SOURCE_DIR}/../../clang/include/clang/Driver/") [all …]
|
H A D | conf.py | 1 # -*- coding: utf-8 -*- 18 # -- General configuration ----------------------------------------------------- 31 # When building man pages, we do not use the markdown pages, 33 # Doing so reduces dependencies of some packaged llvm distributions. 39 if not tags.has("builder-man"): 50 # source_encoding = 'utf-8-sig' 57 copyright = "2017-%d, The Flang Team" % date.today().year 75 # non-false value, then it is used: 87 # If true, '()' will be appended to :func: etc. cross-reference text. 105 # -- Options for HTML output --------------------------------------------------- [all …]
|
/llvm-project/clang-tools-extra/docs/ |
H A D | CMakeLists.txt | 26 set(CLANG_TOOLS_DOXYGEN_QCH_FILENAME "org.llvm.clang.qch" CACHE STRING 28 set(CLANG_TOOLS_DOXYGEN_QHP_NAMESPACE "org.llvm.clang" CACHE STRING 31 "See http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom-filters") 33 "See http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes") 76 add_custom_target(doxygen-clang-tools 80 set_target_properties(doxygen-clang-tools PROPERTIES FOLDER "Clang Tools Extra/Docs") 83 add_dependencies(doxygen doxygen-clang-tools) 88 DESTINATION docs/html) 97 add_sphinx_target(html clang-tools) 100 add_sphinx_target(man clang-tools)
|
/llvm-project/polly/docs/ |
H A D | CMakeLists.txt | 26 set(POLLY_DOXYGEN_QCH_FILENAME "org.llvm.polly.qch" CACHE STRING 28 set(POLLY_DOXYGEN_QHP_NAMESPACE "org.llvm.polly" CACHE STRING 31 "See http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom-filters") 33 "See http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes") 76 add_custom_target(doxygen-polly 80 set_target_properties(doxygen-polly PROPERTIES FOLDER "Polly/Docs") 83 add_dependencies(doxygen doxygen-polly) 88 DESTINATION docs/html) 100 add_sphinx_target(man polly)
|
/llvm-project/lldb/include/lldb/Utility/ |
H A D | TraceIntelPTGDBRemotePackets.h | 1 //===-- TraceIntelPTGDBRemotePackets.h --------------------------*- C++ -*-===// 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 14 #include "llvm/Support/JSON.h" 19 /// See docs/lldb-gdb-remote.txt for more information. 21 /// Do not use system-dependent types, like size_t, because they might cause 32 /// jLLDBTraceStart gdb-remote packet 61 bool fromJSON(const llvm::json::Value &value, TraceIntelPTStartRequest &packet, [all …]
|
/llvm-project/llvm/utils/lit/ |
H A D | README.rst | 2 lit - A Software Testing Tool 8 *lit* is a portable tool for executing LLVM and Clang style test suites, 26 The official *lit* documentation is in the man page, available online at the LLVM 27 Command Guide: http://llvm.org/cmds/lit.html. 33 The *lit* source is available as part of LLVM, in the LLVM source repository: 34 https://github.com/llvm/llvm-project/tree/main/llvm/utils/lit 40 Please browse the issues labeled *tools:llvm-lit* in LLVM's issue tracker for 42 https://github.com/llvm/llvm-project/labels/tools%3Allvm-lit 46 # From within your LLVM source directory. 48 --path /path/to/your/llvm/build/bin \ [all …]
|
/llvm-project/lldb/tools/driver/ |
H A D | Options.td | 1 include "llvm/Option/OptParser.td" 3 class F<string name>: Flag<["--", "-"], name>; 4 class S<string name>: Separate<["--", "-"], name>; 8 // Please keep this in sync with the man page in docs/man/lldb.rst 13 def attach_name: Separate<["--", "-"], "attach-name">, 17 def: Separate<["-"], "n">, 19 HelpText<"Alias for --attach-name">, 22 def wait_for: F<"wait-for">, 25 def: Flag<["-"], "w">, 27 HelpText<"Alias for --wait-for">, [all …]
|
/llvm-project/openmp/runtime/doc/doxygen/ |
H A D | config | 13 #--------------------------------------------------------------------------- 15 #--------------------------------------------------------------------------- 18 # that follow. The default is UTF-8 which is also the encoding used for all 23 DOXYFILE_ENCODING = UTF-8 29 PROJECT_NAME = "LLVM OpenMP* Runtime Library" 58 # 4096 sub-directories (in 2 levels) under the output directory of each output 70 # Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, 72 # Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English 73 # messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, 74 # Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak, [all …]
|
/llvm-project/mlir/docs/ |
H A D | doxygen.cfg.in | 16 #--------------------------------------------------------------------------- 18 #--------------------------------------------------------------------------- 21 # that follow. The default is UTF-8 which is also the encoding used for all text 25 # The default value is: UTF-8. 27 DOXYFILE_ENCODING = UTF-8 30 # double-quotes, unless you are using Doxywizard) that should identify the 63 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub- 77 # Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), 79 # Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), 80 # Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, [all …]
|
/llvm-project/libc/src/__support/FPUtil/generic/ |
H A D | FMod.h | 1 //===-- Common header for fmod implementations -------- [all...] |