1# -*- coding: utf-8 -*- 2# 3# LLVM documentation build configuration file. 4# 5# This file is execfile()d with the current directory set to its containing dir. 6# 7# Note that not all possible configuration values are present in this 8# autogenerated file. 9# 10# All configuration values have a default; values that are commented out 11# serve to show the default. 12from __future__ import print_function 13 14import sys, os, re 15from datetime import date 16 17# If extensions (or modules to document with autodoc) are in another directory, 18# add these directories to sys.path here. If the directory is relative to the 19# documentation root, use os.path.abspath to make it absolute, like shown here. 20#sys.path.insert(0, os.path.abspath('.')) 21 22# -- General configuration ----------------------------------------------------- 23 24# If your documentation needs a minimal Sphinx version, state it here. 25#needs_sphinx = '1.0' 26 27# Add any Sphinx extension module names here, as strings. They can be extensions 28# coming with Sphinx (named 'sphinx.ext.*') or your custom ones. 29extensions = ['sphinx.ext.intersphinx', 'sphinx.ext.todo'] 30 31import sphinx 32if sphinx.version_info >= (3, 0): 33 # This requires 0.5 or later. 34 extensions.append('recommonmark') 35else: 36 source_parsers = {'.md': 'recommonmark.parser.CommonMarkParser'} 37 38# Add any paths that contain templates here, relative to this directory. 39templates_path = ['_templates'] 40 41# The suffix of source filenames. 42source_suffix = { 43 '.rst': 'restructuredtext', 44 '.md': 'markdown', 45} 46 47# The encoding of source files. 48#source_encoding = 'utf-8-sig' 49 50# The master toctree document. 51master_doc = 'index' 52 53# General information about the project. 54project = u'LLVM' 55copyright = u'2003-%d, LLVM Project' % date.today().year 56 57# The version info for the project you're documenting, acts as replacement for 58# |version| and |release|, also used in various other places throughout the 59# built documents. 60# 61# The short version. 62version = '10' 63# The full version, including alpha/beta/rc tags. 64release = '10' 65 66# The language for content autogenerated by Sphinx. Refer to documentation 67# for a list of supported languages. 68#language = None 69 70# There are two options for replacing |today|: either, you set today to some 71# non-false value, then it is used: 72#today = '' 73# Else, today_fmt is used as the format for a strftime call. 74today_fmt = '%Y-%m-%d' 75 76# List of patterns, relative to source directory, that match files and 77# directories to ignore when looking for source files. 78exclude_patterns = ['_build'] 79 80# The reST default role (used for this markup: `text`) to use for all documents. 81#default_role = None 82 83# If true, '()' will be appended to :func: etc. cross-reference text. 84#add_function_parentheses = True 85 86# If true, the current module name will be prepended to all description 87# unit titles (such as .. function::). 88#add_module_names = True 89 90# If true, sectionauthor and moduleauthor directives will be shown in the 91# output. They are ignored by default. 92show_authors = True 93 94# The name of the Pygments (syntax highlighting) style to use. 95pygments_style = 'friendly' 96 97# A list of ignored prefixes for module index sorting. 98#modindex_common_prefix = [] 99 100 101# -- Options for HTML output --------------------------------------------------- 102 103# The theme to use for HTML and HTML Help pages. See the documentation for 104# a list of builtin themes. 105html_theme = 'llvm-theme' 106 107# Theme options are theme-specific and customize the look and feel of a theme 108# further. For a list of options available for each theme, see the 109# documentation. 110html_theme_options = { "nosidebar": False } 111 112# Add any paths that contain custom themes here, relative to this directory. 113html_theme_path = ["_themes"] 114 115# The name for this set of Sphinx documents. If None, it defaults to 116# "<project> v<release> documentation". 117#html_title = None 118 119# A shorter title for the navigation bar. Default is the same as html_title. 120#html_short_title = None 121 122# The name of an image file (relative to this directory) to place at the top 123# of the sidebar. 124#html_logo = None 125 126# The name of an image file (within the static path) to use as favicon of the 127# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 128# pixels large. 129#html_favicon = None 130 131# Add any paths that contain custom static files (such as style sheets) here, 132# relative to this directory. They are copied after the builtin static files, 133# so a file named "default.css" will overwrite the builtin "default.css". 134html_static_path = ['_static'] 135 136# If not '', a 'Last updated on:' timestamp is inserted at every page bottom, 137# using the given strftime format. 138html_last_updated_fmt = '%Y-%m-%d' 139 140# If true, SmartyPants will be used to convert quotes and dashes to 141# typographically correct entities. 142#html_use_smartypants = True 143 144# Custom sidebar templates, maps document names to template names. 145 146html_sidebars = { 147 '**': [ 148 'indexsidebar.html', 149 'sourcelink.html', 150 'searchbox.html', 151 ] 152} 153 154# Additional templates that should be rendered to pages, maps page names to 155# template names. 156#html_additional_pages = {} 157 158# If false, no module index is generated. 159#html_domain_indices = True 160 161# If false, no index is generated. 162#html_use_index = True 163 164# If true, the index is split into individual pages for each letter. 165#html_split_index = False 166 167# If true, links to the reST sources are added to the pages. 168html_show_sourcelink = True 169 170# If true, "Created using Sphinx" is shown in the HTML footer. Default is True. 171#html_show_sphinx = True 172 173# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. 174#html_show_copyright = True 175 176# If true, an OpenSearch description file will be output, and all pages will 177# contain a <link> tag referring to it. The value of this option must be the 178# base URL from which the finished HTML is served. 179#html_use_opensearch = '' 180 181# This is the file name suffix for HTML files (e.g. ".xhtml"). 182#html_file_suffix = None 183 184# Output file base name for HTML help builder. 185htmlhelp_basename = 'LLVMdoc' 186 187 188# -- Options for LaTeX output -------------------------------------------------- 189 190latex_elements = { 191# The paper size ('letterpaper' or 'a4paper'). 192#'papersize': 'letterpaper', 193 194# The font size ('10pt', '11pt' or '12pt'). 195#'pointsize': '10pt', 196 197# Additional stuff for the LaTeX preamble. 198#'preamble': '', 199} 200 201# Grouping the document tree into LaTeX files. List of tuples 202# (source start file, target name, title, author, documentclass [howto/manual]). 203latex_documents = [ 204 ('index', 'LLVM.tex', u'LLVM Documentation', 205 u'LLVM project', 'manual'), 206] 207 208# The name of an image file (relative to this directory) to place at the top of 209# the title page. 210#latex_logo = None 211 212# For "manual" documents, if this is true, then toplevel headings are parts, 213# not chapters. 214#latex_use_parts = False 215 216# If true, show page references after internal links. 217#latex_show_pagerefs = False 218 219# If true, show URL addresses after external links. 220#latex_show_urls = False 221 222# Documents to append as an appendix to all manuals. 223#latex_appendices = [] 224 225# If false, no module index is generated. 226#latex_domain_indices = True 227 228 229# -- Options for manual page output -------------------------------------------- 230 231# One entry per manual page. List of tuples 232# (source start file, name, description, authors, manual section). 233man_pages = [] 234 235# Automatically derive the list of man pages from the contents of the command 236# guide subdirectory. 237basedir = os.path.dirname(__file__) 238man_page_authors = "Maintained by the LLVM Team (https://llvm.org/)." 239command_guide_subpath = 'CommandGuide' 240command_guide_path = os.path.join(basedir, command_guide_subpath) 241 242 243def process_md(name): 244 file_subpath = os.path.join(command_guide_subpath, name) 245 with open(os.path.join(command_guide_path, name)) as f: 246 title = f.readline().rstrip('\n') 247 248 m = re.match(r'^# (\S+) - (.+)$', title) 249 if m is None: 250 print("error: invalid title in %r " 251 "(expected '# <name> - <description>')" % file_subpath, 252 file=sys.stderr) 253 else: 254 man_pages.append((file_subpath.replace('.md',''), m.group(1), 255 m.group(2), man_page_authors, 1)) 256 257 258def process_rst(name): 259 file_subpath = os.path.join(command_guide_subpath, name) 260 with open(os.path.join(command_guide_path, name)) as f: 261 title = f.readline().rstrip('\n') 262 header = f.readline().rstrip('\n') 263 264 if len(header) != len(title): 265 print('error: invalid header in %r (does not match title)' % 266 file_subpath, file=sys.stderr) 267 if ' - ' not in title: 268 print("error: invalid title in %r " 269 "(expected '<name> - <description>')" % file_subpath, 270 file=sys.stderr) 271 # Split the name out of the title. 272 name,description = title.split(' - ', 1) 273 man_pages.append((file_subpath.replace('.rst',''), name, 274 description, man_page_authors, 1)) 275 276 277for name in os.listdir(command_guide_path): 278 # Process Markdown files 279 if name.endswith('.md'): 280 process_md(name) 281 # Process ReST files apart from the index page. 282 elif name.endswith('.rst') and name != 'index.rst': 283 process_rst(name) 284 285# If true, show URL addresses after external links. 286#man_show_urls = False 287 288# FIXME: Define intersphinx configuration. 289intersphinx_mapping = {} 290 291# Pygment lexer are sometimes out of date (when parsing LLVM for example) or 292# wrong. Suppress the warning so the build doesn't abort. 293suppress_warnings = [ 'misc.highlighting_failure' ] 294 295# Direct html-ified man pages to llvm.org 296manpages_url = 'https://llvm.org/docs/CommandGuide/{page}.html' 297