diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2005-04-22 17:58:03 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2005-04-22 17:58:03 +0000 |
commit | 1e195bdd41454ea72a735177e646f3df8cf0fb84 (patch) | |
tree | 7b663b07167821cbc3b1ba555b3ede4ee5ffe05e | |
parent | 7afc9558e02e326b74cb3ff3eddbb6a44ee9b561 (diff) | |
download | bcm5719-llvm-1e195bdd41454ea72a735177e646f3df8cf0fb84.tar.gz bcm5719-llvm-1e195bdd41454ea72a735177e646f3df8cf0fb84.zip |
Document the --enable-targets= feature of the configure script.
llvm-svn: 21454
-rw-r--r-- | llvm/docs/GettingStarted.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/llvm/docs/GettingStarted.html b/llvm/docs/GettingStarted.html index dbb8dfacaf6..88d34db5ec4 100644 --- a/llvm/docs/GettingStarted.html +++ b/llvm/docs/GettingStarted.html @@ -790,6 +790,16 @@ script to configure the build system:</p> to explicitly enable it if you want it. <p></p> </dd> + <dt><i>--enable-targets=</i><tt>target-option</tt></dt> + <dd>Controls which targets will be built and linked into llc. The default + value for <tt>target_options</tt> is "all" which builds and links all + available targets. The value "host-only" can be specified to build only a + native compiler (no cross-compiler targets available). The "native" target is + selected as the target of the build host. You can also specify a comma + separated list of target names that you want available in llc. The target + names use all lower case. The current set is of targets is: <br/> + <tt>alpha, ia64, powerpc, skeleton, sparc, x86</tt>. + <p></p></dd> <dt><i>--enable-doxygen</i></dt> <dd>Look for the doxygen program and enable construction of doxygen based documentation from the source code. This is disabled by default because |