[PATCH] D34316: Update documentation to reflection disuse of external cvtres.

Eric Beckmann via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Jun 16 19:27:17 PDT 2017


This revision was automatically updated to reflect the committed changes.
Closed by commit rL305631: Update documentation to reflection disuse of external cvtres. (authored by ecbeckmann).

Changed prior to commit:
  https://reviews.llvm.org/D34316?vs=102930&id=102931#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D34316

Files:
  lld/trunk/COFF/Driver.cpp
  lld/trunk/docs/windows_support.rst


Index: lld/trunk/docs/windows_support.rst
===================================================================
--- lld/trunk/docs/windows_support.rst
+++ lld/trunk/docs/windows_support.rst
@@ -49,7 +49,7 @@
 
 Windows resource files support
   :good:`Done`. If an ``.res`` file is given, LLD converts the file to a COFF
-  file using ``cvtres.exe`` command and link it.
+  file using LLVM's Object library.
 
 Safe Structured Exception Handler (SEH)
   :good:`Done` for both x86 and x64.
Index: lld/trunk/COFF/Driver.cpp
===================================================================
--- lld/trunk/COFF/Driver.cpp
+++ lld/trunk/COFF/Driver.cpp
@@ -935,9 +935,9 @@
     Config->Machine = AMD64;
   }
 
-  // Windows specific -- Input files can be Windows resource files (.res files).
-  // We invoke cvtres.exe to convert resource files to a regular COFF file
-  // then link the result file normally.
+  // Input files can be Windows resource files (.res files). We use
+  // WindowsResource to convert resource files to a regular COFF file,
+  // then link the resulting file normally.
   if (!Resources.empty())
     addBuffer(convertResToCOFF(Resources));
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D34316.102931.patch
Type: text/x-patch
Size: 1165 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170617/fa2d48f0/attachment.bin>


More information about the llvm-commits mailing list