summaryrefslogtreecommitdiff
path: root/www/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'www/index.html')
-rw-r--r--www/index.html30
1 files changed, 22 insertions, 8 deletions
diff --git a/www/index.html b/www/index.html
index 8f1489e84553..821f25d7e04f 100644
--- a/www/index.html
+++ b/www/index.html
@@ -43,6 +43,16 @@
under the MIT license and the UIUC License (a BSD-like license).</p>
<!--=====================================================================-->
+ <h2>New Documentation Coming Soon!</h2>
+ <!--=====================================================================-->
+
+ <p> Looking for documentation on how to use, build and test libc++? If so
+ checkout the new libc++ documentation.</p>
+
+ <p><a href="http://libcxx.llvm.org/docs/">
+ Click here for the new libc++ documentation.</a></p>
+
+ <!--=====================================================================-->
<h2 id="goals">Features and Goals</h2>
<!--=====================================================================-->
@@ -184,26 +194,30 @@
<p>In-tree build:</p>
<ul>
+ <li><code>cd where-you-want-to-live</code></li>
<li>Check out libcxx and <a href="http://libcxxabi.llvm.org/">libcxxabi</a>
into llvm/projects</li>
- <li><code>cd llvm</code></li>
+ <li><code>cd where-you-want-to-build</code></li>
<li><code>mkdir build &amp;&amp; cd build</code></li>
- <li><code>cmake .. # Linux may require -DCMAKE_C_COMPILER=clang
+ <li><code>cmake path/to/llvm # Linux may require -DCMAKE_C_COMPILER=clang
-DCMAKE_CXX_COMPILER=clang++</code></li>
<li><code>make cxx</code></li>
</ul>
- <p>Out-of-tree build:</p>
+ <p>Out-of-tree buildc:</p>
<ul>
- <li>Check out libcxx</li>
+ <li><code>cd where-you-want-to-live</code></li>
+ <li>Check out libcxx and llvm</li>
<li>If not on a Mac, also check out
<a href="http://libcxxabi.llvm.org/">libcxxabi</a></li>
- <li><code>cd libcxx</code></li>
+ <li><code>cd where-you-want-to-build</code></li>
<li><code>mkdir build &amp;&amp; cd build</code></li>
- <li><code>cmake -DLIBCXX_CXX_ABI=libcxxabi
+ <li><code>cmake -DLLVM_PATH=path/to/llvm
+ -DLIBCXX_CXX_ABI=libcxxabi
-DLIBCXX_CXX_ABI_INCLUDE_PATHS=path/to/libcxxabi/include
- -DLIT_EXECUTABLE=path/to/llvm/utils/lit/lit.py .. # Linux may require
- -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++</code></li>
+ -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++
+ path/to/libcxx
+ </code></li>
<li><code>make</code></li>
</ul>