[lld] r203756 - [docs][Windows] Document how to build using Ninja.

Rui Ueyama ruiu at google.com
Wed Mar 12 22:48:46 PDT 2014


Author: ruiu
Date: Thu Mar 13 00:48:46 2014
New Revision: 203756

URL: http://llvm.org/viewvc/llvm-project?rev=203756&view=rev
Log:
[docs][Windows] Document how to build using Ninja.

Modified:
    lld/trunk/docs/windows_support.rst

Modified: lld/trunk/docs/windows_support.rst
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/docs/windows_support.rst?rev=203756&r1=203755&r2=203756&view=diff
==============================================================================
--- lld/trunk/docs/windows_support.rst (original)
+++ lld/trunk/docs/windows_support.rst Thu Mar 13 00:48:46 2014
@@ -75,8 +75,11 @@ Debug info
 Building LLD
 ============
 
+Using Visual Studio IDE/MSBuild
+---------------------------
+
 1. Check out LLVM and LLD from the LLVM SVN repository (or Git mirror),
-#. run ``cmake -G "Visual Studio 12" <llvm-source-dir>``
+#. run ``cmake -G "Visual Studio 12" <llvm-source-dir>`` from VS command prompt,
 #. open LLVM.sln with Visual Studio, and
 #. build ``lld`` target in ``lld executables`` folder
 
@@ -91,6 +94,13 @@ MSBuild.exe had been shipped as a compon
 You can build LLD as a 64 bit application. To do that, open VS2013 x64 command
 prompt and run cmake for "Visual Studio 12 Win64" target.
 
+Using Ninja
+-----------
+
+1. Check out LLVM and LLD from the LLVM SVN repository (or Git mirror),
+#. run ``cmake -G ninja <llvm-source-dir>`` from VS command prompt,
+#. run ``ninja lld``
+
 Known issues
 ============
 





More information about the llvm-commits mailing list