summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorOscar Fuentes <ofv@wanadoo.es>2009-11-23 00:21:43 +0000
committerOscar Fuentes <ofv@wanadoo.es>2009-11-23 00:21:43 +0000
commitb8352de5514276e7e66998744e5d9eb477076d29 (patch)
tree8e48b43830ed8b555d67e2445ea5996acd13871d /docs
parentead2dacc9ee028906cb104c8c3d66ccbbebe6b10 (diff)
downloadllvm-b8352de5514276e7e66998744e5d9eb477076d29.tar.gz
llvm-b8352de5514276e7e66998744e5d9eb477076d29.tar.bz2
llvm-b8352de5514276e7e66998744e5d9eb477076d29.tar.xz
CMake: generate targets for tools and examples even when
LLVM_BUILD_TOOLS or LLVM_BUILD_EXAMPLES are OFF. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@89635 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/CMake.html10
1 files changed, 8 insertions, 2 deletions
diff --git a/docs/CMake.html b/docs/CMake.html
index 190d102c83..2b7fda3447 100644
--- a/docs/CMake.html
+++ b/docs/CMake.html
@@ -251,10 +251,16 @@
<i>-DLLVM_TARGETS_TO_BUILD="X86;PowerPC;Alpha"</i>.</dd>
<dt><b>LLVM_BUILD_TOOLS</b>:BOOL</dt>
- <dd>Build LLVM tools. Defaults to ON.</dd>
+ <dd>Build LLVM tools. Defaults to ON. Targets for building each tool
+ are generated in any case. You can build an tool separately by
+ invoking its target. For example, you can build <i>llvm-as</i>
+ with a makefile-based system executing <i>make llvm-as</i> on the
+ root of your build directory.</dd>
<dt><b>LLVM_BUILD_EXAMPLES</b>:BOOL</dt>
- <dd>Build LLVM examples. Defaults to OFF.</dd>
+ <dd>Build LLVM examples. Defaults to OFF. Targets for building each
+ example are generated in any case. See documentation
+ for <i>LLVM_BUILD_TOOLS</i> above for more details.</dd>
<dt><b>LLVM_ENABLE_THREADS</b>:BOOL</dt>
<dd>Build with threads support, if available. Defaults to ON.</dd>