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