[cfe-commits] r117723 - /cfe/trunk/www/get_started.html
Rafael Espindola
rafael.espindola at gmail.com
Fri Oct 29 15:05:17 PDT 2010
Author: rafael
Date: Fri Oct 29 17:05:17 2010
New Revision: 117723
URL: http://llvm.org/viewvc/llvm-project?rev=117723&view=rev
Log:
Use objdir != srcdir in the getting started doc.
Modified:
cfe/trunk/www/get_started.html
Modified: cfe/trunk/www/get_started.html
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/www/get_started.html?rev=117723&r1=117722&r2=117723&view=diff
==============================================================================
--- cfe/trunk/www/get_started.html (original)
+++ cfe/trunk/www/get_started.html Fri Oct 29 17:05:17 2010
@@ -51,8 +51,11 @@
</ul>
<li>Build LLVM and Clang:</li>
<ul>
- <li><tt>cd ..</tt> (back to llvm)</li>
- <li><tt>./configure</tt></li>
+ <li><tt>cd ../..</tt> (back to where you started)</li>
+ <li><tt>mkdir build</tt> (for building without polluting the source dir)
+ </li>
+ <li><tt>cd build</tt></li>
+ <li><tt>../llvm/configure</tt></li>
<li><tt>make</tt></li>
<li>This builds both LLVM and Clang for debug mode.</li>
<li>Note: For subsequent Clang development, you can just do make at the
More information about the cfe-commits
mailing list