[lld] r203613 - [docs] Add a note on how to build LLD on Windows.

Rui Ueyama ruiu at google.com
Tue Mar 11 15:40:44 PDT 2014


Author: ruiu
Date: Tue Mar 11 17:40:43 2014
New Revision: 203613

URL: http://llvm.org/viewvc/llvm-project?rev=203613&view=rev
Log:
[docs] Add a note on how to build LLD on Windows.

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=203613&r1=203612&r2=203613&view=diff
==============================================================================
--- lld/trunk/docs/windows_support.rst (original)
+++ lld/trunk/docs/windows_support.rst Tue Mar 11 17:40:43 2014
@@ -21,7 +21,7 @@ almost all command line options that the
 C++ (link.exe) supports.
 
 The current status is that LLD can link itself on Windows x86 using Visual C++
-as the compiler.
+2012 or 2013 as the compiler.
 
 Development status
 ==================
@@ -72,6 +72,22 @@ Debug info
   support neither.
 
 
+Building LLD
+============
+
+1. Check out LLVM and LLD from the LLVM SVN repository (or Git mirror),
+#. run ``cmake`` as usual,
+#. open LLVM.sln with Visual Studio, and
+#. build ``lld`` target in ``lld executables`` folder
+
+Alternatively, you can use msbuild if you don't like to work in an IDE::
+
+  msbuild LLVM.sln /m /target:"lld executables\lld"
+
+MSBuild.exe had been shipped as a component of the .NET framework, but since
+2013 it's part of Visual Studio. You can find it at "C:\\Program Files
+(x86)\\msbuild".
+
 Known issues
 ============
 





More information about the llvm-commits mailing list