Home | History | Annotate | only in /external/llvm/docs
Up to higher level directory
NameDateSize
_static/03-Dec-2014
_templates/03-Dec-2014
_themes/03-Dec-2014
AliasAnalysis.rst03-Dec-201430.9K
ARM-BE-bitcastfail.png03-Dec-201428.7K
ARM-BE-bitcastsuccess.png03-Dec-201440.5K
ARM-BE-ld1.png03-Dec-201422K
ARM-BE-ldr.png03-Dec-201416.1K
Atomics.rst03-Dec-201419.2K
BigEndianNEON.rst03-Dec-201412.2K
BitCodeFormat.rst03-Dec-201436.8K
BlockFrequencyTerminology.rst03-Dec-20144.6K
BranchWeightMetadata.rst03-Dec-20142.9K
Bugpoint.rst03-Dec-201410.4K
CMake.rst03-Dec-201418.2K
CMakeLists.txt03-Dec-20143.5K
CodeGenerator.rst03-Dec-2014105.7K
CodingStandards.rst03-Dec-201461K
CommandGuide/03-Dec-2014
CommandLine.rst03-Dec-201467.4K
CompilerWriterInfo.rst03-Dec-20146.3K
conf.py03-Dec-20148.2K
DebuggingJITedCode.rst03-Dec-20144.9K
DeveloperPolicy.rst03-Dec-201425.9K
doxygen.cfg.in03-Dec-201467.1K
doxygen.css03-Dec-20149K
doxygen.footer03-Dec-2014378
doxygen.header03-Dec-2014471
doxygen.intro03-Dec-2014787
Dummy.html03-Dec-20140
ExceptionHandling.rst03-Dec-201418.2K
ExtendedIntegerResults.txt03-Dec-20144.9K
ExtendingLLVM.rst03-Dec-201411.5K
Extensions.rst03-Dec-20145K
FAQ.rst03-Dec-201418.2K
GarbageCollection.rst03-Dec-201439.2K
gcc-loops.png03-Dec-201421K
GetElementPtr.rst03-Dec-201421.9K
GettingStarted.rst03-Dec-201448.3K
GettingStartedVS.rst03-Dec-20148.2K
GoldPlugin.rst03-Dec-20145.3K
HistoricalNotes/03-Dec-2014
HowToAddABuilder.rst03-Dec-20143.6K
HowToBuildOnARM.rst03-Dec-20142.9K
HowToCrossCompileLLVM.rst03-Dec-20146.1K
HowToReleaseLLVM.rst03-Dec-201418.4K
HowToSetUpLLVMStyleRTTI.rst03-Dec-201412.9K
HowToSubmitABug.rst03-Dec-20148.4K
HowToUseAttributes.rst03-Dec-20143.5K
HowToUseInstrMappings.rst03-Dec-20147.6K
InAlloca.rst03-Dec-20146.3K
index.rst03-Dec-201412.2K
LangRef.rst03-Dec-2014314.1K
Lexicon.rst03-Dec-20145.2K
LinkTimeOptimization.rst03-Dec-201411K
linpack-pc.png03-Dec-201413.3K
LLVMBuild.rst03-Dec-201412.3K
LLVMBuild.txt03-Dec-2014660
make.bat03-Dec-20145K
Makefile03-Dec-20144.3K
Makefile.sphinx03-Dec-20145.4K
MakefileGuide.rst03-Dec-201433.1K
MarkedUpDisassembly.rst03-Dec-20143.3K
MCJIT-creation.png03-Dec-201425.8K
MCJIT-dyld-load.png03-Dec-201438K
MCJIT-engine-builder.png03-Dec-201418.3K
MCJIT-load-object.png03-Dec-201474.7K
MCJIT-load.png03-Dec-201426.7K
MCJIT-resolve-relocations.png03-Dec-201456.3K
MCJITDesignAndImplementation.rst03-Dec-20148.6K
NVPTXUsage.rst03-Dec-201429.4K
Packaging.rst03-Dec-20142.6K
Passes.rst03-Dec-201447.6K
Phabricator.rst03-Dec-20145K
ProgrammersManual.rst03-Dec-2014127K
Projects.rst03-Dec-20149.4K
re_format.703-Dec-201418.4K
README.txt03-Dec-20141.8K
ReleaseNotes.rst03-Dec-20145.7K
ReleaseProcess.rst03-Dec-20147.3K
SegmentedStacks.rst03-Dec-20143.1K
SourceLevelDebugging.rst03-Dec-201483.5K
SphinxQuickstartTemplate.rst03-Dec-20145K
StackMaps.rst03-Dec-201419.9K
SystemLibrary.rst03-Dec-201411.5K
TableGen/03-Dec-2014
TableGenFundamentals.rst03-Dec-2014243
TestingGuide.rst03-Dec-201419K
TestSuiteMakefileGuide.rst03-Dec-201411.1K
tutorial/03-Dec-2014
Vectorizers.rst03-Dec-201412.7K
WritingAnLLVMBackend.rst03-Dec-201480.4K
WritingAnLLVMPass.rst03-Dec-201459K
yaml2obj.rst03-Dec-20149.8K
YamlIO.rst03-Dec-201429.9K

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 
     44 Checking links
     45 ==============
     46 
     47 The reachibility of external links in the documentation can be checked by
     48 running:
     49 
     50     cd docs/
     51     make -f Makefile.sphinx linkcheck
     52