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