diff options
author | Reid Kleckner <rnk@google.com> | 2016-04-11 17:02:34 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2016-04-11 17:02:34 +0000 |
commit | 88cbe5a1ccad5b8a937d5dd7488eabf4363317c8 (patch) | |
tree | d60391f515afd4f9f451dea4495c91cf94b54ae1 | |
parent | 7452093e99e8314ee32cfdc76500099568642111 (diff) | |
download | bcm5719-llvm-88cbe5a1ccad5b8a937d5dd7488eabf4363317c8.tar.gz bcm5719-llvm-88cbe5a1ccad5b8a937d5dd7488eabf4363317c8.zip |
Update getting started docs
compiler-rt is optional. We often get email from users with compiler-rt
build errors who don't actually need compiler-rt. Marking it optional
should help them avoid those potential problems.
While I'm here, update a reference to the build directory and remove an
obsolete reference to llvm-gcc. Nobody today is under the impression
that Clang depends on GCC.
llvm-svn: 265963
-rw-r--r-- | clang/www/get_started.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/clang/www/get_started.html b/clang/www/get_started.html index bc0a288e962..1b44152a004 100644 --- a/clang/www/get_started.html +++ b/clang/www/get_started.html @@ -68,7 +68,7 @@ follows:</p> <li><tt>cd ../../../..</tt></li> </ul> </li> - <li>Checkout Compiler-RT: + <li>Checkout Compiler-RT (optional): <ul> <li><tt>cd llvm/projects</tt></li> <li><tt>svn co http://llvm.org/svn/llvm-project/compiler-rt/trunk @@ -109,7 +109,7 @@ follows:</p> scenarios, you can use the <tt>-DGCC_INSTALL_PREFIX</tt> cmake option to tell Clang where the gcc containing the desired libstdc++ is installed. </li> - <li>Try it out (assuming you add llvm/Debug+Asserts/bin to your path): + <li>Try it out (assuming you add llvm/build/bin to your path): <ul> <li><tt>clang --help</tt></li> <li><tt>clang file.c -fsyntax-only</tt> (check for correctness)</li> @@ -120,10 +120,10 @@ follows:</p> </li> </ol> -<p>Note that the C front-end uses LLVM, but does not depend on llvm-gcc. If you -encounter problems with building Clang, make sure you have the latest SVN -version of LLVM. LLVM contains support libraries for Clang that will be updated -as well as development on Clang progresses.</p> +<p>If you encounter problems while building Clang, make sure that your LLVM +checkout is at the same revision as your Clang checkout. LLVM's interfaces +change over time, and mismatched revisions are not expected to work +together.</p> <h3>Simultaneously Building Clang and LLVM:</h3> |