Daniel Dunbar | 21e993c | 2012-04-19 16:31:37 +0000 | [diff] [blame] | 1 | .. _development_process: |
| 2 | |
| 3 | Development Process Documentation |
| 4 | ================================= |
| 5 | |
Bill Wendling | 9e22640 | 2012-06-19 22:25:41 +0000 | [diff] [blame] | 6 | .. toctree:: |
| 7 | :hidden: |
| 8 | |
| 9 | Projects |
Bill Wendling | 2c8293d | 2012-06-20 02:57:56 +0000 | [diff] [blame^] | 10 | CodingStandards |
Bill Wendling | 9e22640 | 2012-06-19 22:25:41 +0000 | [diff] [blame] | 11 | |
| 12 | \ |
| 13 | |
| 14 | * :ref:`projects` |
Daniel Dunbar | 21e993c | 2012-04-19 16:31:37 +0000 | [diff] [blame] | 15 | |
| 16 | How-to guide and templates for new projects that *use* the LLVM |
| 17 | infrastructure. The templates (directory organization, Makefiles, and test |
| 18 | tree) allow the project code to be located outside (or inside) the ``llvm/`` |
| 19 | tree, while using LLVM header files and libraries. |
| 20 | |
Bill Wendling | 2c8293d | 2012-06-20 02:57:56 +0000 | [diff] [blame^] | 21 | * :ref:`coding_standards` |
| 22 | |
| 23 | Describes a few coding standards that are used in the LLVM source tree. All |
| 24 | code submissions must follow the coding standards before being allowed into |
| 25 | the source tree. |
| 26 | |
Daniel Dunbar | 21e993c | 2012-04-19 16:31:37 +0000 | [diff] [blame] | 27 | * `LLVMBuild Documentation <LLVMBuild.html>`_ |
| 28 | |
| 29 | Describes the LLVMBuild organization and files used by LLVM to specify |
| 30 | component descriptions. |
| 31 | |
| 32 | * `LLVM Makefile Guide <MakefileGuide.html>`_ |
| 33 | |
| 34 | Describes how the LLVM makefiles work and how to use them. |
| 35 | |
| 36 | * `How To Release LLVM To The Public <HowToReleaseLLVM.html>`_ |
| 37 | |
| 38 | This is a guide to preparing LLVM releases. Most developers can ignore it. |