This revision was automatically updated to reflect the committed changes.
Closed by commit rL304761: [Driver] Don't force .exe suffix for lld (authored
by smeenai).
Changed prior to commit:
https://reviews.llvm.org/D33923?vs=101495&id=101502#toc
Repository:
rL LLVM
https://reviews.llvm.org/
zturner accepted this revision.
zturner added a comment.
This revision is now accepted and ready to land.
Seems fine to me.
https://reviews.llvm.org/D33923
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman
smeenai created this revision.
When cross-compiling to Windows using lld, we want the driver to invoke
it as lld-link rather than lld-link.exe. On Windows, the LLVM fs
functions take care of adding the .exe suffix where necessary, so we can
just drop the addition in the toolchain entirely.
https