summaryrefslogtreecommitdiff
path: root/www/build.html
diff options
context:
space:
mode:
Diffstat (limited to 'www/build.html')
-rwxr-xr-xwww/build.html28
1 files changed, 14 insertions, 14 deletions
diff --git a/www/build.html b/www/build.html
index fbb35ae554edd..c5d050c4d4e14 100755
--- a/www/build.html
+++ b/www/build.html
@@ -123,20 +123,20 @@
</li>
</ul>
Sample command line:<br/>
- <code>cmake -G Ninja -DLLDB_TEST_DEBUG_TEST_CRASHES=1 -DPYTHON_HOME=C:\Python35 -DLLDB_TEST_COMPILER=d:\src\llvmbuild\ninja_release\bin\clang.exe ..\..\llvm</code>
- <h2>Working with both Ninja and MSVC</h2>
- <p>
- Compiling with <code>ninja</code> is both faster and simpler than compiling with MSVC, but chances are you still want
- to debug LLDB with MSVC (at least until we can debug LLDB on Windows with LLDB!). One solution to this is to run
- <code>cmake</code> twice and generate the output into two different folders. One for compiling (the <code>ninja</code>
- folder), and one for editing / browsing / debugging (the MSVC folder).
- </p>
- <p>
- To do this, simply run <code>`cmake -G Ninja &lt;arguments&gt;`</code> from one folder, and
- <code>`cmake -G "Visual Studio 14 2015" &lt;arguments&gt;`</code> in another folder. Then you can open the .sln file
- in Visual Studio, set <code>lldb</code> as the startup project, and use F5 to run it. You need only edit the project
- settings to set the executable and the working directory to point to binaries inside of the <code>ninja</code> tree.
- </p>
+ <code>cmake -G Ninja -DLLDB_TEST_DEBUG_TEST_CRASHES=1 -DPYTHON_HOME=C:\Python35 -DLLDB_TEST_COMPILER=d:\src\llvmbuild\ninja_release\bin\clang.exe ..\..\llvm</code>
+ <h2>Working with both Ninja and MSVC</h2>
+ <p>
+ Compiling with <code>ninja</code> is both faster and simpler than compiling with MSVC, but chances are you still want
+ to debug LLDB with MSVC (at least until we can debug LLDB on Windows with LLDB!). One solution to this is to run
+ <code>cmake</code> twice and generate the output into two different folders. One for compiling (the <code>ninja</code>
+ folder), and one for editing / browsing / debugging (the MSVC folder).
+ </p>
+ <p>
+ To do this, simply run <code>`cmake -G Ninja &lt;arguments&gt;`</code> from one folder, and
+ <code>`cmake -G "Visual Studio 14 2015" &lt;arguments&gt;`</code> in another folder. Then you can open the .sln file
+ in Visual Studio, set <code>lldb</code> as the startup project, and use F5 to run it. You need only edit the project
+ settings to set the executable and the working directory to point to binaries inside of the <code>ninja</code> tree.
+ </p>
</div>
</div>
<div class="post" id="BuildingLldbOnMacOSX">