From c352caf168094c83f05a8010ca14c2e643dbf618 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Thu, 10 Nov 2011 00:49:51 +0000 Subject: 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). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@144250 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/LLVMBuild.html | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) (limited to 'docs') diff --git a/docs/LLVMBuild.html b/docs/LLVMBuild.html index bb1883a12c..1616b2d459 100644 --- a/docs/LLVMBuild.html +++ b/docs/LLVMBuild.html @@ -134,7 +134,7 @@ $ROOT of project trees for things which can be checked out separately. --> -

LLVMBuild Format Reference

+

LLVMBuild Format Reference

@@ -151,11 +151,12 @@ $ROOT of project trees for things which can be checked out separately. --> ; 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. +; 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. property_name = property_value list_property_name = value_1 value_2 ... value_n +boolean_property_name = 1 (or 0)
@@ -281,6 +282,21 @@ required_libraries = Archive BitReader Core Support TransformUtils +
  • type = TargetGroup +

    TargetGroup components are an extension of LibraryGroups, specifically + for defining LLVM targets (which are handled specially in a few + places).

    + +

    The name of the component should always be the name of the target.

    + +

    Components with this type use the LibraryGroup properties in addition + to:

    + +
  • +
  • type = Tool

    Tool components define standalone command line tools which should be built from the source code in the component directory and linked.

    -- cgit v1.2.3