1# -*- coding: utf-8 -*- 2# Flang documentation build configuration file. 3# 4# This file is execfile()d with the current directory set to its containing dir. 5# 6# Note that not all possible configuration values are present in this 7# autogenerated file. 8# 9# All configuration values have a default; values that are commented out 10# serve to show the default. 11 12from datetime import date 13# If extensions (or modules to document with autodoc) are in another directory, 14# add these directories to sys.path here. If the directory is relative to the 15# documentation root, use os.path.abspath to make it absolute, like shown here. 16# sys.path.insert(0, os.path.abspath('.')) 17 18# -- General configuration ----------------------------------------------------- 19 20# If your documentation needs a minimal Sphinx version, state it here. 21# needs_sphinx = '1.0' 22# Add any Sphinx extension module names here, as strings. They can be extensions 23# coming with Sphinx (named 'sphinx.ext.*') or your custom ones. 24extensions = [ 25 "sphinx.ext.todo", 26 "sphinx.ext.mathjax", 27 "sphinx.ext.intersphinx", 28 "sphinx.ext.autodoc", 29] 30 31# When building man pages, we do not use the markdown pages, 32# So, we can continue without the myst_parser dependencies. 33# Doing so reduces dependencies of some packaged llvm distributions. 34try: 35 import myst_parser 36 37 extensions.append("myst_parser") 38except ImportError: 39 if not tags.has("builder-man"): 40 raise 41 42 43# Add any paths that contain templates here, relative to this directory. 44templates_path = ["_templates"] 45myst_heading_anchors = 6 46 47import sphinx 48 49# The encoding of source files. 50# source_encoding = 'utf-8-sig' 51 52# The master toctree document. 53master_doc = "index" 54 55# General information about the project. 56project = "Flang" 57copyright = "2017-%d, The Flang Team" % date.today().year 58 59# The version info for the project you're documenting, acts as replacement for 60# |version| and |release|, also used in various other places throughout the 61# built documents. These are currently set to zero because we don't use them. 62# Should somebody consider in the future to change them, they need to be updated 63# everytime a new release comes out. 64# 65# The short version. 66# version = '0' 67# The full version, including alpha/beta/rc tags. 68# release = '0' 69 70# The language for content autogenerated by Sphinx. Refer to documentation 71# for a list of supported languages. 72# language = None 73 74# There are two options for replacing |today|: either, you set today to some 75# non-false value, then it is used: 76# today = '' 77# Else, today_fmt is used as the format for a strftime call. 78# today_fmt = '%B %d, %Y' 79 80# List of patterns, relative to source directory, that match files and 81# directories to ignore when looking for source files. 82exclude_patterns = ["_build", "analyzer", "FIR/*"] 83 84# The reST default role (used for this markup: `text`) to use for all documents. 85# default_role = None 86 87# If true, '()' will be appended to :func: etc. cross-reference text. 88# add_function_parentheses = True 89 90# If true, the current module name will be prepended to all description 91# unit titles (such as .. function::). 92# add_module_names = True 93 94# If true, sectionauthor and moduleauthor directives will be shown in the 95# output. They are ignored by default. 96# show_authors = False 97 98# The name of the Pygments (syntax highlighting) style to use. 99pygments_style = "friendly" 100 101# A list of ignored prefixes for module index sorting. 102# modindex_common_prefix = [] 103 104 105# -- Options for HTML output --------------------------------------------------- 106 107# The theme to use for HTML and HTML Help pages. See the documentation for 108# a list of builtin themes. 109html_theme = "haiku" 110 111# Theme options are theme-specific and customize the look and feel of a theme 112# further. For a list of options available for each theme, see the 113# documentation. 114# html_theme_options = {} 115 116# Add any paths that contain custom themes here, relative to this directory. 117# html_theme_path = [] 118 119# The name for this set of Sphinx documents. If None, it defaults to 120# "<project> v<release> documentation". 121html_title = "The Flang Compiler" 122 123# A shorter title for the navigation bar. Default is the same as html_title. 124# html_short_title = None 125 126# The name of an image file (relative to this directory) to place at the top 127# of the sidebar. 128# html_logo = None 129 130# The name of an image file (within the static path) to use as favicon of the 131# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 132# pixels large. 133# html_favicon = None 134 135# Add any paths that contain custom static files (such as style sheets) here, 136# relative to this directory. They are copied after the builtin static files, 137# so a file named "default.css" will overwrite the builtin "default.css". 138# html_static_path = [] 139 140# If not '', a 'Last updated on:' timestamp is inserted at every page bottom, 141# using the given strftime format. 142html_last_updated_fmt = "%b %d, %Y" 143 144# If true, SmartyPants will be used to convert quotes and dashes to 145# typographically correct entities. 146# html_use_smartypants = True 147 148# Custom sidebar templates, maps document names to template names. 149# html_sidebars = {} 150 151# Additional templates that should be rendered to pages, maps page names to 152# template names. 153# html_additional_pages = {} 154 155# If false, no module index is generated. 156# html_domain_indices = True 157 158# If false, no index is generated. 159# html_use_index = True 160 161# If true, the index is split into individual pages for each letter. 162# html_split_index = False 163 164# If true, links to the reST sources are added to the pages. 165# html_show_sourcelink = True 166 167# If true, "Created using Sphinx" is shown in the HTML footer. Default is True. 168# html_show_sphinx = True 169 170# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. 171# html_show_copyright = True 172 173# If true, an OpenSearch description file will be output, and all pages will 174# contain a <link> tag referring to it. The value of this option must be the 175# base URL from which the finished HTML is served. 176# html_use_opensearch = '' 177 178# This is the file name suffix for HTML files (e.g. ".xhtml"). 179# html_file_suffix = None 180 181# Output file base name for HTML help builder. 182htmlhelp_basename = "Flangdoc" 183 184# If true, the reST sources are included in the HTML build as 185# _sources/name. The default is True. 186html_copy_source = False 187 188# -- Options for LaTeX output -------------------------------------------------- 189 190latex_elements = { 191 # The paper size ('letterpaper' or 'a4paper'). 192 #'papersize': 'letterpaper', 193 # The font size ('10pt', '11pt' or '12pt'). 194 #'pointsize': '10pt', 195 # Additional stuff for the LaTeX preamble. 196 #'preamble': '', 197} 198 199# Grouping the document tree into LaTeX files. List of tuples 200# (source start file, target name, title, author, documentclass [howto/manual]). 201latex_documents = [ 202 ("Overview", "Flang.tex", "Flang Documentation", "The Flang Team", "manual"), 203] 204 205# The name of an image file (relative to this directory) to place at the top of 206# the title page. 207# latex_logo = None 208 209# For "manual" documents, if this is true, then toplevel headings are parts, 210# not chapters. 211# latex_use_parts = False 212 213# If true, show page references after internal links. 214# latex_show_pagerefs = False 215 216# If true, show URL addresses after external links. 217# latex_show_urls = False 218 219# Documents to append as an appendix to all manuals. 220# latex_appendices = [] 221 222# If false, no module index is generated. 223# latex_domain_indices = True 224 225 226# -- Options for manual page output -------------------------------------------- 227 228# One entry per manual page. List of tuples 229# (source start file, name, description, authors, manual section). 230man_pages = [] 231 232# If true, show URL addresses after external links. 233# man_show_urls = False 234 235 236# -- Options for Texinfo output ------------------------------------------------ 237 238# Grouping the document tree into Texinfo files. List of tuples 239# (source start file, target name, title, author, 240# dir menu entry, description, category) 241texinfo_documents = [ 242 ( 243 "Overview", 244 "Flang", 245 "Flang Documentation", 246 "The Flang Team", 247 "Flang", 248 "A Fortran front end for LLVM.", 249 "Miscellaneous", 250 ), 251] 252 253# Documents to append as an appendix to all manuals. 254# texinfo_appendices = [] 255 256# If false, no module index is generated. 257# texinfo_domain_indices = True 258 259# How to display URL addresses: 'footnote', 'no', or 'inline'. 260# texinfo_show_urls = 'footnote' 261