[lld] r305406 - Fix documentation.

Rui Ueyama via llvm-commits llvm-commits at lists.llvm.org
Wed Jun 14 11:18:21 PDT 2017


Author: ruiu
Date: Wed Jun 14 13:18:20 2017
New Revision: 305406

URL: http://llvm.org/viewvc/llvm-project?rev=305406&view=rev
Log:
Fix documentation.

We do not actually accept .rc files. We only accept .res files.

Pointed out by Eric Beckmann.

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=305406&r1=305405&r2=305406&view=diff
==============================================================================
--- lld/trunk/docs/windows_support.rst (original)
+++ lld/trunk/docs/windows_support.rst Wed Jun 14 13:18:20 2017
@@ -48,11 +48,8 @@ Creating DLL
   file.
 
 Windows resource files support
-  :good:`Done`. If an ``.rc`` file is given, LLD converts the file to a COFF
-  file using some external commands and link it. Specifically, ``rc.exe`` is
-  used to compile a resource file (.rc) to a compiled resource (.res)
-  file. ``rescvt.exe`` is then used to convert a compiled resource file to a
-  COFF object file section. Both tools are shipped with MSVC.
+  :good:`Done`. If an ``.res`` file is given, LLD converts the file to a COFF
+  file using ``cvtres.exe`` command and link it.
 
 Safe Structured Exception Handler (SEH)
   :good:`Done` for both x86 and x64.




More information about the llvm-commits mailing list