forked from OSchip/llvm-project
Update documentation to reflection disuse of external cvtres.
Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D34316 llvm-svn: 305631
This commit is contained in:
parent
c70d07b7ea
commit
9e19d790a6
|
@ -935,9 +935,9 @@ void LinkerDriver::link(ArrayRef<const char *> ArgsArr) {
|
||||||
Config->Machine = AMD64;
|
Config->Machine = AMD64;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Windows specific -- Input files can be Windows resource files (.res files).
|
// Input files can be Windows resource files (.res files). We use
|
||||||
// We invoke cvtres.exe to convert resource files to a regular COFF file
|
// WindowsResource to convert resource files to a regular COFF file,
|
||||||
// then link the result file normally.
|
// then link the resulting file normally.
|
||||||
if (!Resources.empty())
|
if (!Resources.empty())
|
||||||
addBuffer(convertResToCOFF(Resources));
|
addBuffer(convertResToCOFF(Resources));
|
||||||
|
|
||||||
|
|
|
@ -49,7 +49,7 @@ Creating DLL
|
||||||
|
|
||||||
Windows resource files support
|
Windows resource files support
|
||||||
:good:`Done`. If an ``.res`` file is given, LLD converts the file to a COFF
|
: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)
|
Safe Structured Exception Handler (SEH)
|
||||||
:good:`Done` for both x86 and x64.
|
:good:`Done` for both x86 and x64.
|
||||||
|
|
Loading…
Reference in New Issue