<div dir="ltr">If clang is targeting VC++, then -fuse-ld=lld should be enough to make it run lld-link.exe, and you won't need to set the flavor or do anything special to get PE/COFF files.<div><br></div><div>This example worked for me:</div><div><div><br></div><div>$ cat t.cpp</div><div>#include <iostream></div><div>int main() { std::cout << "hello world\n"; }</div><div><br></div><div>$ clang++ t.cpp -fuse-ld=lld -o t.exe && ./t.exe<br></div><div>hello world</div></div><div><br></div><div>Unfortunately, we don't have a GNU-ld compatible command line interface for the COFF port of LLD, if that's what you're having trouble with. This is something I personally think we should add, but don't have time to pursue.</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Mar 29, 2017 at 7:56 AM, Edward Diener via llvm-dev <span dir="ltr"><<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">I build llvm/clang/lld from source on Windows using mingw-64/gcc-6.3. I use clang++ both to test clang targeting gcc and clang targeting VC++. When using clang targeting VC++ I use the appropriate target triple when compiling and am trying to use lld to link the object file(s) into an exe. To do that I use the clang option "-fuse-ld=lld" when linking. According to the llvm doc on using lld with PE/COFF on Windows at<br>
<a href="https://lld.llvm.org/windows_support.html" rel="noreferrer" target="_blank">https://lld.llvm.org/windows_s<wbr>upport.html</a>:<br>
<br>
"LLD supports Windows operating system. When invoked as lld-link.exe or with -flavor link, the driver for Windows operating system is used to parse command line options, and it drives further linking processes. LLD accepts almost all command line options that the linker shipped with Microsoft Visual C++ (link.exe) supports."<br>
<br>
Unfortunately with clang++ attempting to use "-fuse-ld=lld-link" when linking outputs:<br>
<br>
"clang++.exe: error: unsupported value 'lld_link' for -linker option"<br>
<br>
So I must use "-fuse-ld=lld". Does this mean that I should be passing "-flavor link" to the lld linker ? If so, how do I do that ? If not, what do I do to have lld work with PE/COFF linking rather than ELF linking ?<br>
<br>
I have attempted to pass to the clang++ when linking:<br>
<br>
1) "-flavor link", which outputs:<br>
clang++.exe: error: unknown argument: '-flavor'<br>
clang++.exe: error: no such file or directory: 'link'<br>
<br>
2) -flavor=link", which outputs:<br>
clang++.exe: error: unknown argument: '-flavor=link'<br>
<br>
3) -Wl,-flavor,link, which outputs<br>
C:\Programming\VersionControl\<wbr>bninja_installed_clang\bin\lld<wbr>: error: unknown argument: -flavor<br>
<br>
4) -Wl,-flavor=link, which outputs<br>
C:\Programming\VersionControl\<wbr>bninja_installed_clang\bin\lld<wbr>: error: unknown argument: -flavor=link<br>
<br>
What is the "magic" invocation that will allow me to invoke the lld linker from the clang++ command, but get the linker to work in PE/COFF mode rather than in ELF mode, so it will link object files created by clang targeting VC++ ?<br>
<br>
______________________________<wbr>_________________<br>
LLVM Developers mailing list<br>
<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/<wbr>mailman/listinfo/llvm-dev</a><br>
</blockquote></div><br></div>