diff options
author | Daniel Dunbar <daniel@zuster.org> | 2011-11-10 00:49:51 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2011-11-10 00:49:51 +0000 |
commit | 82219ad4dc10d0ba49bb5681ce4b4718ab816a87 (patch) | |
tree | d8420a7f34929b47063db2ed98f1411345cfb3f5 /llvm/docs/LLVMBuild.html | |
parent | c83a459937400e4fc4c6a033a0b62a4f3a3a668b (diff) | |
download | bcm5719-llvm-82219ad4dc10d0ba49bb5681ce4b4718ab816a87.tar.gz bcm5719-llvm-82219ad4dc10d0ba49bb5681ce4b4718ab816a87.zip |
llvm-build: Add an explicit component type to represent targets.
- Gives us a place to hang target specific metadata (like whether the target has a JIT).
llvm-svn: 144250
Diffstat (limited to 'llvm/docs/LLVMBuild.html')
-rw-r--r-- | llvm/docs/LLVMBuild.html | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/llvm/docs/LLVMBuild.html b/llvm/docs/LLVMBuild.html index bb1883a12c5..1616b2d4593 100644 --- a/llvm/docs/LLVMBuild.html +++ b/llvm/docs/LLVMBuild.html @@ -134,7 +134,7 @@ $ROOT of project trees for things which can be checked out separately. --> </div> <!-- *********************************************************************** --> -<h2><a name="formatref">LLVMBuild Format Reference</a></h2> +<h2><a name="formatreference">LLVMBuild Format Reference</a></h2> <!-- *********************************************************************** --> <div> @@ -151,11 +151,12 @@ $ROOT of project trees for things which can be checked out separately. --> <i>; Properties are declared using '=' and are contained in the previous section. ; -; We support simple scalar values and list values, where items are separated by -; spaces. There is no support for quoting, and so property values may not contain -; spaces.</i> +; We support simple string and boolean scalar values and list values, where +; items are separated by spaces. There is no support for quoting, and so +; property values may not contain spaces.</i> property_name = property_value list_property_name = value_1 value_2 <em>...</em> value_n +boolean_property_name = 1 <em>(or 0)</em> </pre> </div> @@ -281,6 +282,21 @@ required_libraries = Archive BitReader Core Support TransformUtils </ul> </li> + <li><i>type = TargetGroup</i> + <p>TargetGroup components are an extension of LibraryGroups, specifically + for defining LLVM targets (which are handled specially in a few + places).</p> + + <p>The name of the component should always be the name of the target.</p> + + <p>Components with this type use the LibraryGroup properties in addition + to:</p> + <ul> + <li><i>has_jit</i> <b>[optional]</b> <b>[boolean]</b> + <p>Whether this target supports JIT compilation.</p></li> + </ul> + </li> + <li><i>type = Tool</i> <p>Tool components define standalone command line tools which should be built from the source code in the component directory and linked.</p> |