Home | History | Annotate | only in /external/llvm/docs
Up to higher level directory
NameDateSize
_static/03-Jun-2014
_templates/03-Jun-2014
_themes/03-Jun-2014
AliasAnalysis.rst03-Jun-201430.6K
Atomics.rst03-Jun-201419.4K
BitCodeFormat.rst03-Jun-201436.2K
BranchWeightMetadata.rst03-Jun-20142.9K
Bugpoint.rst03-Jun-201410.5K
CMake.rst03-Jun-201414.9K
CodeGenerator.rst03-Jun-2014105.1K
CodingStandards.rst03-Jun-201449.8K
CommandGuide/03-Jun-2014
CommandLine.rst03-Jun-201467.4K
CompilerWriterInfo.rst03-Jun-20145.9K
conf.py03-Jun-20148.2K
DebuggingJITedCode.rst03-Jun-20144.9K
DeveloperPolicy.rst03-Jun-201423.6K
doxygen.cfg.in03-Jun-201466.6K
doxygen.css03-Jun-20149K
doxygen.footer03-Jun-2014378
doxygen.header03-Jun-2014471
doxygen.intro03-Jun-2014787
Dummy.html03-Jun-20140
ExceptionHandling.rst03-Jun-201415.9K
ExtendedIntegerResults.txt03-Jun-20144.9K
ExtendingLLVM.rst03-Jun-201411.5K
Extensions.rst03-Jun-20142K
FAQ.rst03-Jun-201418.7K
GarbageCollection.rst03-Jun-201439.7K
gcc-loops.png03-Jun-201421K
GetElementPtr.rst03-Jun-201421.9K
GettingStarted.rst03-Jun-201453K
GettingStartedVS.rst03-Jun-20148.1K
GoldPlugin.rst03-Jun-20145.7K
HistoricalNotes/03-Jun-2014
HowToAddABuilder.rst03-Jun-20143.6K
HowToBuildOnARM.rst03-Jun-20141.7K
HowToReleaseLLVM.rst03-Jun-201417.6K
HowToSetUpLLVMStyleRTTI.rst03-Jun-201412.9K
HowToSubmitABug.rst03-Jun-20148.4K
HowToUseAttributes.rst03-Jun-20143.5K
HowToUseInstrMappings.rst03-Jun-20147.6K
index.rst03-Jun-201411.4K
LangRef.rst03-Jun-2014288.4K
Lexicon.rst03-Jun-20145.2K
LinkTimeOptimization.rst03-Jun-201411K
linpack-pc.png03-Jun-201413.3K
LLVMBuild.rst03-Jun-201412.3K
LLVMBuild.txt03-Jun-2014660
make.bat03-Jun-20145K
Makefile03-Jun-20144.3K
Makefile.sphinx03-Jun-20145.4K
MakefileGuide.rst03-Jun-201433.2K
MarkedUpDisassembly.rst03-Jun-20143.3K
NVPTXUsage.rst03-Jun-20147.9K
Packaging.rst03-Jun-20142.6K
Passes.rst03-Jun-201450.5K
Phabricator.rst03-Jun-20143.9K
ProgrammersManual.rst03-Jun-2014126K
Projects.rst03-Jun-201412.1K
re_format.703-Jun-201418.4K
README.txt03-Jun-20141.6K
ReleaseNotes.rst03-Jun-20144.1K
ReleaseProcess.rst03-Jun-20147.3K
SegmentedStacks.rst03-Jun-20143.1K
SourceLevelDebugging.rst03-Jun-201483.5K
SphinxQuickstartTemplate.rst03-Jun-20145K
SystemLibrary.rst03-Jun-201411.5K
TableGen/03-Jun-2014
TableGenFundamentals.rst03-Jun-201427.1K
TestingGuide.rst03-Jun-201419.3K
TestSuiteMakefileGuide.rst03-Jun-201411.1K
tutorial/03-Jun-2014
Vectorizers.rst03-Jun-201410K
WritingAnLLVMBackend.rst03-Jun-201478.4K
WritingAnLLVMPass.rst03-Jun-201459.1K
yaml2obj.rst03-Jun-20149.8K
YamlIO.rst03-Jun-201426.8K

README.txt

      1 LLVM Documentation
      2 ==================
      3 
      4 LLVM's documentation is written in reStructuredText, a lightweight
      5 plaintext markup language (file extension `.rst`). While the
      6 reStructuredText documentation should be quite readable in source form, it
      7 is mostly meant to be processed by the Sphinx documentation generation
      8 system to create HTML pages which are hosted on <http://llvm.org/docs/> and
      9 updated after every commit. Manpage output is also supported, see below.
     10 
     11 If you instead would like to generate and view the HTML locally, install
     12 Sphinx <http://sphinx-doc.org/> and then do:
     13 
     14     cd docs/
     15     make -f Makefile.sphinx
     16     $BROWSER _build/html/index.html
     17 
     18 The mapping between reStructuredText files and generated documentation is
     19 `docs/Foo.rst` <-> `_build/html/Foo.html` <-> `http://llvm.org/docs/Foo.html`.
     20 
     21 If you are interested in writing new documentation, you will want to read
     22 `SphinxQuickstartTemplate.rst` which will get you writing documentation
     23 very fast and includes examples of the most important reStructuredText
     24 markup syntax.
     25 
     26 Manpage Output
     27 ===============
     28 
     29 Building the manpages is similar to building the HTML documentation. The
     30 primary difference is to use the `man` makefile target, instead of the
     31 default (which is `html`). Sphinx then produces the man pages in the
     32 directory `_build/man/`.
     33 
     34     cd docs/
     35     make -f Makefile.sphinx man
     36     man -l _build/man/FileCheck.1
     37 
     38 The correspondence between .rst files and man pages is
     39 `docs/CommandGuide/Foo.rst` <-> `_build/man/Foo.1`.
     40 These .rst files are also included during HTML generation so they are also
     41 viewable online (as noted above) at e.g.
     42 `http://llvm.org/docs/CommandGuide/Foo.html`.
     43