diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-02-06 19:00:40 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-02-06 19:00:40 +0000 |
commit | 9b4422629afa486dc3bdb7413a0d43e9007f67c1 (patch) | |
tree | 1b2ee9c8bcbed02bf5faee93bd595373fdde0ffe | |
parent | a2a31bf3b2c76285c30103127acf94cd4ce4ccf7 (diff) | |
download | external_llvm-9b4422629afa486dc3bdb7413a0d43e9007f67c1.zip external_llvm-9b4422629afa486dc3bdb7413a0d43e9007f67c1.tar.gz external_llvm-9b4422629afa486dc3bdb7413a0d43e9007f67c1.tar.bz2 |
Document the LINK_COMPONENTS and NO_INSTALL variables.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33969 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | docs/MakefileGuide.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/docs/MakefileGuide.html b/docs/MakefileGuide.html index 4ec2f99..6c0310d 100644 --- a/docs/MakefileGuide.html +++ b/docs/MakefileGuide.html @@ -683,6 +683,15 @@ <dt><a name="LIBRARYNAME"><tt>LIBRARYNAME</tt></a></dt> <dd>Specify the name of the library to be built. (Required For Libraries)</dd> + <dt><a name="LINK_COMPONENTS"><tt>LINK_COMPONENTS</tt></a></dt> + <dd>When specified for building a tool, the value of this variable will be + passed to the <tt>llvm-config</tt> tool to generate a link line for the + tool. Unlike <tt>USEDLIBS</tt> and <tt>LLVMLIBS</tt>, not all libraries need + to be specified. The <tt>llvm-config</tt> tool will figure out the library + dependencies and add any libraries that are needed. The <tt>USEDLIBS</tt> + variable can still be used in conjunction with <tt>LINK_COMPONENTS</tt> so + that additional project-specific libraries can be linked with the LLVM + libraries specified by <tt>LINK_COMPONENTS</tt></dd> <dt><a name="LINK_LIBS_IN_SHARED"><tt>LINK_LIBS_IN_SHARED</tt></a></dt> <dd>By default, shared library linking will ignore any libraries specified with the <a href="LLVMLIBS">LLVMLIBS</a> or <a href="USEDLIBS">USEDLIBS</a>. @@ -704,6 +713,12 @@ module can be specified in conjunction with other kinds of library builds or by itself. It constructs from the sources a single linked bytecode file.</dd> + <dt><a name="NO_INSTALL"><tt>NO_INSTALL</tt></a></dt> + <dd>Specifies that the build products of the directory should not be + installed but should be built even if the <tt>install</tt> target is given. + This is handy for directories that build libraries or tools that are only + used as part of the build process, such as code generators (e.g. + <tt>tblgen</tt>).</dd> <dt><a name="OPTIONAL_DIRS"><tt>OPTIONAL_DIRS</tt></a></dt> <dd>Specify a set of directories that may be built, if they exist, but its not an error for them not to exist.</dd> |