blob: 3a205141b40434d3ccb694cd2d0d16166871e941 [file] [log] [blame]
Daniel Dunbar21e993c2012-04-19 16:31:37 +00001.. _userguides:
2
3User Guides
4===========
5
Daniel Dunbar17412a02012-05-08 16:50:43 +00006.. toctree::
7 :hidden:
8
Bill Wendlingd9aa95d2012-07-06 05:51:50 +00009 CMake
Daniel Dunbar17412a02012-05-08 16:50:43 +000010 CommandGuide/index
Bill Wendlingbbc3be52012-06-20 11:20:07 +000011 DeveloperPolicy
Michael J. Spencer55eda322012-06-21 23:27:09 +000012 GettingStartedVS
Michael J. Spencer0ed5cf42012-06-18 20:21:38 +000013 FAQ
Bill Wendling5cda9012012-06-20 10:36:41 +000014 Lexicon
Bill Wendling1d4e6282012-06-21 06:09:37 +000015 Packaging
Galina Kistanovae30ba2e2012-09-13 23:51:08 +000016 HowToAddABuilder
Sean Silva5cc1e232012-09-21 02:46:30 +000017 yaml2obj
Sean Silva87ed5532012-09-25 20:52:04 +000018 HowToSubmitABug
Daniel Dunbar17412a02012-05-08 16:50:43 +000019
Bill Wendling81e664b2012-06-20 09:48:38 +000020* `The LLVM Getting Started Guide <GettingStarted.html>`_
Daniel Dunbar21e993c2012-04-19 16:31:37 +000021
Bill Wendling81e664b2012-06-20 09:48:38 +000022 Discusses how to get up and running quickly with the LLVM infrastructure.
23 Everything from unpacking and compilation of the distribution to execution
24 of some tools.
Daniel Dunbar21e993c2012-04-19 16:31:37 +000025
Chad Rosierd6a27412012-07-11 21:49:14 +000026* :ref:`building-with-cmake`
Daniel Dunbar21e993c2012-04-19 16:31:37 +000027
Bill Wendling81e664b2012-06-20 09:48:38 +000028 An addendum to the main Getting Started guide for those using the `CMake
29 build system <http://www.cmake.org>`_.
Daniel Dunbar21e993c2012-04-19 16:31:37 +000030
Bill Wendling81e664b2012-06-20 09:48:38 +000031* `Getting Started with the LLVM System using Microsoft Visual Studio
32 <GettingStartedVS.html>`_
Daniel Dunbar21e993c2012-04-19 16:31:37 +000033
Bill Wendling81e664b2012-06-20 09:48:38 +000034 An addendum to the main Getting Started guide for those using Visual Studio
35 on Windows.
Daniel Dunbar21e993c2012-04-19 16:31:37 +000036
Bill Wendling81e664b2012-06-20 09:48:38 +000037* `LLVM Tutorial <tutorial/>`_
Daniel Dunbar21e993c2012-04-19 16:31:37 +000038
Bill Wendling81e664b2012-06-20 09:48:38 +000039 A walk through the process of using LLVM for a custom language, and the
40 facilities LLVM offers in tutorial form.
Daniel Dunbar21e993c2012-04-19 16:31:37 +000041
Bill Wendlingbbc3be52012-06-20 11:20:07 +000042* :ref:`developer_policy`
Daniel Dunbar21e993c2012-04-19 16:31:37 +000043
Bill Wendling81e664b2012-06-20 09:48:38 +000044 The LLVM project's policy towards developers and their contributions.
Daniel Dunbar17412a02012-05-08 16:50:43 +000045
Bill Wendling81e664b2012-06-20 09:48:38 +000046* :ref:`LLVM Command Guide <commands>`
Daniel Dunbar21e993c2012-04-19 16:31:37 +000047
Bill Wendling81e664b2012-06-20 09:48:38 +000048 A reference manual for the LLVM command line utilities ("man" pages for LLVM
49 tools).
Daniel Dunbar21e993c2012-04-19 16:31:37 +000050
Bill Wendling81e664b2012-06-20 09:48:38 +000051* `LLVM's Analysis and Transform Passes <Passes.html>`_
Daniel Dunbar21e993c2012-04-19 16:31:37 +000052
Bill Wendling81e664b2012-06-20 09:48:38 +000053 A list of optimizations and analyses implemented in LLVM.
Daniel Dunbar21e993c2012-04-19 16:31:37 +000054
Bill Wendling81e664b2012-06-20 09:48:38 +000055* :ref:`faq`
Daniel Dunbar21e993c2012-04-19 16:31:37 +000056
Bill Wendling81e664b2012-06-20 09:48:38 +000057 A list of common questions and problems and their solutions.
Daniel Dunbar21e993c2012-04-19 16:31:37 +000058
Bill Wendling81e664b2012-06-20 09:48:38 +000059* `Release notes for the current release <ReleaseNotes.html>`_
Daniel Dunbar21e993c2012-04-19 16:31:37 +000060
Bill Wendling81e664b2012-06-20 09:48:38 +000061 This describes new features, known bugs, and other limitations.
Daniel Dunbar21e993c2012-04-19 16:31:37 +000062
Sean Silva87ed5532012-09-25 20:52:04 +000063* :ref:`how-to-submit-a-bug-report`
Daniel Dunbar21e993c2012-04-19 16:31:37 +000064
Bill Wendling81e664b2012-06-20 09:48:38 +000065 Instructions for properly submitting information about any bugs you run into
66 in the LLVM system.
Daniel Dunbar21e993c2012-04-19 16:31:37 +000067
Bill Wendling81e664b2012-06-20 09:48:38 +000068* `LLVM Testing Infrastructure Guide <TestingGuide.html>`_
Daniel Dunbar21e993c2012-04-19 16:31:37 +000069
Bill Wendling81e664b2012-06-20 09:48:38 +000070 A reference manual for using the LLVM testing infrastructure.
Daniel Dunbar21e993c2012-04-19 16:31:37 +000071
Bill Wendling81e664b2012-06-20 09:48:38 +000072* `How to build the C, C++, ObjC, and ObjC++ front end <http://clang.llvm.org/get_started.html>`_
Daniel Dunbar21e993c2012-04-19 16:31:37 +000073
Bill Wendling81e664b2012-06-20 09:48:38 +000074 Instructions for building the clang front-end from source.
Daniel Dunbar21e993c2012-04-19 16:31:37 +000075
Bill Wendling1d4e6282012-06-21 06:09:37 +000076* :ref:`packaging`
Daniel Dunbar21e993c2012-04-19 16:31:37 +000077
Bill Wendling81e664b2012-06-20 09:48:38 +000078 Advice on packaging LLVM into a distribution.
Daniel Dunbar21e993c2012-04-19 16:31:37 +000079
Bill Wendling5cda9012012-06-20 10:36:41 +000080* :ref:`lexicon`
Daniel Dunbar21e993c2012-04-19 16:31:37 +000081
Bill Wendling81e664b2012-06-20 09:48:38 +000082 Definition of acronyms, terms and concepts used in LLVM.
Daniel Dunbar21e993c2012-04-19 16:31:37 +000083
Galina Kistanovae30ba2e2012-09-13 23:51:08 +000084* :ref:`how_to_add_a_builder`
Daniel Dunbar21e993c2012-04-19 16:31:37 +000085
Bill Wendling81e664b2012-06-20 09:48:38 +000086 Instructions for adding new builder to LLVM buildbot master.
Daniel Dunbar21e993c2012-04-19 16:31:37 +000087
Bill Wendling81e664b2012-06-20 09:48:38 +000088* **IRC** -- You can probably find help on the unofficial LLVM IRC.
Daniel Dunbar21e993c2012-04-19 16:31:37 +000089
Bill Wendling81e664b2012-06-20 09:48:38 +000090 We often are on irc.oftc.net in the #llvm channel. If you are using the
91 mozilla browser, and have chatzilla installed, you can `join #llvm on
92 irc.oftc.net <irc://irc.oftc.net/llvm>`_.