https://bugs.llvm.org/show_bug.cgi?id=33925
Bug ID: 33925
Summary: lld incorrectly creates manifest files by default
Product: lld
Version: unspecified
Hardware: PC
OS: Windows NT
Status: NEW
Severity: enhancement
Priority: P
Component: COFF
Assignee: unassignedb...@nondot.org
Reporter: nicolaswe...@gmx.de
CC: llvm-bugs@lists.llvm.org
C:\src\chrome\src>type test.cc
int main() {}
C:\src\chrome\src>cl /nologo /c test.cc
test.cc
C:\src\chrome\src>link.exe /nologo test.obj
C:\src\chrome\src>type test.exe.manifest
The system cannot find the file specified.
C:\src\chrome\src>"third_party\llvm-build\Release+Asserts\bin\lld-link.exe"
test.obj
C:\src\chrome\src>type test.exe.manifest
<?xml version="1.0" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1"
manifestVersion="1.0">
<trustInfo>
<security>
<requestedPrivileges>
<requestedExecutionLevel level='asInvoker' uiAccess='false'/>
</requestedPrivileges>
</security>
</trustInfo>
</assembly>
lld-link creates a .manifest file by default while link.exe doesn't (unless you
pass in /manifest). lld-link should match link.exe's behavior.
--
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs