summaryrefslogtreecommitdiffstats
path: root/www/get_started.html
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2010-10-29 22:05:17 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2010-10-29 22:05:17 +0000
commitfa5fa97a1428e95540cbe95138e781a59bff7e39 (patch)
tree9acfb5d141396ce607b4f98b801cc357293a1001 /www/get_started.html
parent1af67f33f32444d7b344c67e03a196cd5e8c03ea (diff)
Use objdir != srcdir in the getting started doc.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@117723 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'www/get_started.html')
-rw-r--r--www/get_started.html7
1 files changed, 5 insertions, 2 deletions
diff --git a/www/get_started.html b/www/get_started.html
index 34fed95587..6d4e75f330 100644
--- a/www/get_started.html
+++ b/www/get_started.html
@@ -51,8 +51,11 @@ follows:</p>
</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