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 | 9059390 | 2012-06-20 04:20:39 +0000 | [diff] [blame] | 9 | MakefileGuide |
| 10 | Projects |
Sean Silva | 01315e6 | 2012-11-20 03:13:53 +0000 | [diff] [blame] | 11 | LLVMBuild |
Dmitri Gribenko | 69c0239 | 2012-12-07 16:42:48 +0000 | [diff] [blame] | 12 | HowToReleaseLLVM |
Bill Wendling | 9e22640 | 2012-06-19 22:25:41 +0000 | [diff] [blame] | 13 | |
Bill Wendling | 6062958 | 2012-06-20 11:53:08 +0000 | [diff] [blame] | 14 | * :ref:`projects` |
Bill Wendling | 9e22640 | 2012-06-19 22:25:41 +0000 | [diff] [blame] | 15 | |
Bill Wendling | 6062958 | 2012-06-20 11:53:08 +0000 | [diff] [blame] | 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. |
Daniel Dunbar | 21e993c | 2012-04-19 16:31:37 +0000 | [diff] [blame] | 20 | |
Sean Silva | 01315e6 | 2012-11-20 03:13:53 +0000 | [diff] [blame] | 21 | * :doc:`LLVMBuild` |
Bill Wendling | 2c8293d | 2012-06-20 02:57:56 +0000 | [diff] [blame] | 22 | |
Bill Wendling | 6062958 | 2012-06-20 11:53:08 +0000 | [diff] [blame] | 23 | Describes the LLVMBuild organization and files used by LLVM to specify |
| 24 | component descriptions. |
Daniel Dunbar | 21e993c | 2012-04-19 16:31:37 +0000 | [diff] [blame] | 25 | |
Bill Wendling | 6062958 | 2012-06-20 11:53:08 +0000 | [diff] [blame] | 26 | * :ref:`makefile_guide` |
Daniel Dunbar | 21e993c | 2012-04-19 16:31:37 +0000 | [diff] [blame] | 27 | |
Bill Wendling | 6062958 | 2012-06-20 11:53:08 +0000 | [diff] [blame] | 28 | Describes how the LLVM makefiles work and how to use them. |
Daniel Dunbar | 21e993c | 2012-04-19 16:31:37 +0000 | [diff] [blame] | 29 | |
Dmitri Gribenko | 69c0239 | 2012-12-07 16:42:48 +0000 | [diff] [blame] | 30 | * :doc:`HowToReleaseLLVM` |
Daniel Dunbar | 21e993c | 2012-04-19 16:31:37 +0000 | [diff] [blame] | 31 | |
Bill Wendling | 6062958 | 2012-06-20 11:53:08 +0000 | [diff] [blame] | 32 | This is a guide to preparing LLVM releases. Most developers can ignore it. |