search for: manifestfil

Displaying 10 results from an estimated 10 matches for "manifestfil".

Did you mean: manifestfile
2008 Jul 01
0
[LLVMdev] build on windows
...? > I also send a screenshot (properties of llvm-dis) > The command line properties are not correct. Here's what the properties of llvm-dis on VC++ 2005 should look like: /OUT:"E:\Downloads\LLVM\llvm-2.3\win32\\bin\Win32\Debug/llvm-dis.exe" /INCREMENTAL /NOLOGO /MANIFEST /MANIFESTFILE:"Win32\Debug\llvm-dis.exe.intermediate.manifest" /DEBUG /PDB:"E:\Downloads\LLVM\llvm-2.3\win32\\bin\Win32\Debug/llvm-dis.pdb" /SUBSYSTEM:CONSOLE /MACHINE:X86 /ERRORREPORT:PROMPT kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib o...
2008 Jul 01
2
[LLVMdev] build on windows
Hi Argiris, It was for example the project TableGen, llvm-dis... I saw it under Properties/Linker/Command Line And the output is also: Linking... Starting pass 1 LINK : fatal error LNK1181: cannot open input file '..\configure\configure\configure.lib' Build log was saved at "file://d:\Studium\Diplom\Download\llvm-2.3\win32\TableGen\Win32\Release\Bui ldLog.htm" TableGen - 1
2017 Jun 14
2
Using LLD to create a .lib from a .def
...ManifestKind Manifest = SideBySide; int ManifestID = 1; StringRef ManifestDependency; bool ManifestUAC = true; std::vector<std::string> ManifestInput; StringRef ManifestLevel = "'asInvoker'"; StringRef ManifestUIAccess = "'false'"; StringRef ManifestFile; // Used for /failifmismatch. std::map<StringRef, StringRef> MustMatch; // Used for /alternatename. std::map<StringRef, StringRef> AlternateNames; uint64_t ImageBase = -1; uint64_t StackReserve = 1024 * 1024; uint64_t StackCommit = 4096; uint64_t HeapReserve = 1024 *...
2012 Sep 09
0
Different behavior of the "showArgs" example (R extension manual) between gcc and Visual C++ compiled code
...;user32.lib" "gdi32.lib" "winspool.lib" "comdlg32.lib" "advapi32.lib" "shell32.lib" "ole32.lib" "oleaut32.lib" "uuid.lib" "odbc32.lib" "odbccp32.lib" /DEF:"showArgs-win.def" /MANIFEST /ManifestFile:"Debug\showArgs.dll.intermediate.manifest" /ALLOWISOLATION /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"C:\XXXX\Debug\showArgs.pdb" /PGD:"C:\XXXX\Debug\showArgs.pgd" /TLBID:1 /DYNAMICBASE /NXCOMPAT /MACHINE:X86 /ERRORREPORT:...
2017 Jun 15
2
Using LLD to create a .lib from a .def
...= 1; >> StringRef ManifestDependency; >> bool ManifestUAC = true; >> std::vector<std::string> ManifestInput; >> StringRef ManifestLevel = "'asInvoker'"; >> StringRef ManifestUIAccess = "'false'"; >> StringRef ManifestFile; >> >> // Used for /failifmismatch. >> std::map<StringRef, StringRef> MustMatch; >> >> // Used for /alternatename. >> std::map<StringRef, StringRef> AlternateNames; >> >> uint64_t ImageBase = -1; >> uint64_t StackReserve...
2017 Jun 16
2
Using LLD to create a .lib from a .def
...dency; >>>> bool ManifestUAC = true; >>>> std::vector<std::string> ManifestInput; >>>> StringRef ManifestLevel = "'asInvoker'"; >>>> StringRef ManifestUIAccess = "'false'"; >>>> StringRef ManifestFile; >>>> >>>> // Used for /failifmismatch. >>>> std::map<StringRef, StringRef> MustMatch; >>>> >>>> // Used for /alternatename. >>>> std::map<StringRef, StringRef> AlternateNames; >>>> >>>...
2019 Jan 23
2
Windows/Clang build instrumented/PGO
.../INCREMENTAL:NO /subsystem:console lib\LLVMSupport.lib lib\LLVMTableGen.lib lib\LLVMSupport.lib psapi.lib shell32.lib ole32.lib uuid.lib advapi32.lib lib\LLVMDemangle.lib kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTFILE:bin\llvm-tblgen.exe.manifest" failed (exit code 1) with the following output: lld-link.exe: warning: ignoring unknown argument: -fuse-ld=lld lld-link.exe: warning: ignoring unknown argument: -fprofile-instr-generate='C:\code\clang-builder\build\instrumented\profiles\%4m.profraw' lld-l...
2019 Feb 27
4
Making LLD PDB generation faster
...t > symbols on release? > > The command line seems simple enough: > > C:\PROGRA~1\LLVM\bin\lld-link.exe /nologo @CMakeFiles\lld.rsp > /out:bin\lld.exe /implib:lib\lld.lib /version:0.0 /machine:x64 > -fuse-ld=lld /STACK:10000000 /INCREMENTAL:NO /subsystem:console > /MANIFEST /MANIFESTFILE:bin\lld.exe.manifest > > On Mon, Feb 25, 2019 at 8:20 PM Leonardo Santagada <santagada at gmail.com> > wrote: > > > > Sadly the patch on https://reviews.llvm.org/D55585 didn't apply on my > > clone of llvm at all :( It will take me quite some time to test this...
2019 Feb 28
3
Making LLD PDB generation faster
...kes > 30 minutes to link lld without symbols on release? The command line seems simple enough: C:\PROGRA~1\LLVM\bin\lld-link.exe /nologo @CMakeFiles\lld.rsp /out:bin\lld.exe /implib:lib\lld.lib /version:0.0 /machine:x64 -fuse-ld=lld /STACK:10000000 /INCREMENTAL:NO /subsystem:console /MANIFEST /MANIFESTFILE:bin\lld.exe.manifest On Mon, Feb 25, 2019 at 8:20 PM Leonardo Santagada <santagada at gmail.com<mailto:santagada at gmail.com>> wrote: > > Sadly the patch on https://reviews.llvm.org/D55585 didn't apply on my > clone of llvm at all :( It will take me quite some time to te...
2019 Feb 25
2
Making LLD PDB generation faster
Sadly the patch on https://reviews.llvm.org/D55585 didn't apply on my clone of llvm at all :( It will take me quite some time to test this out. On Mon, Feb 25, 2019 at 5:08 PM Alexandre Ganea <alexandre.ganea at ubisoft.com> wrote: > > For enabling large memory pages, see this link: https://support.sisoftware.co.uk/knowledgebase.php?article=52 > > Meow hash isn't in the