search for: vsinstalldir

Displaying 6 results from an estimated 6 matches for "vsinstalldir".

Did you mean: vcinstalldir
2018 Jan 23
1
[PDB] Error "DIA is not installed on the system" occured in `llvm::pdb::loadDataForExe()`.
...e that the arguments of the two calls are both `PDB_ReaderType::DIA`, that means the first IfStmt in `llvm::pdb::loadDataFromEXE(PDB_ReaderType Type, ...)` is temporarily useless. Is that right? 2) I have visual studio 2015 installed on my computer and there is no an environment variable called VSINSTALLDIR. And the `LLVM_ENABLE_DIA_SDK` is 0, so every time need to call `llvm::pdb::loadDataFromEXE(PDB_ReaderType Type, ...)`, it will trigger the "DIA is not installed on the system" error. I want to known is this kind of behavior correct? ------------------------------------------------------...
2016 Jul 27
0
Gauging interest in generating PDBs from LLVM-backed languages
...99 <https://support.microsoft.com/en-us/kb/3035999> If you open the file cmake/config-ix.cmake you will find the place where cmake check if the DIA_SDK is present (there is also a note saying that sometime this is a Windows bug). You can modify the line "set(MSVC_DIA_SDK_DIR "$ENV{VSINSTALLDIR}DIA SDK”)” by "set(MSVC_DIA_SDK_DIR “C:\\path\\to\\DIA SDK”)”. In my case, it was working. Hope this help. Greetings, Johan > On 27 Jul 2016, at 04:02, Michael Lewis via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > On Tue, Jul 26, 2016 at 12:30 PM, Zachary Turner <z...
2016 Jul 27
3
Gauging interest in generating PDBs from LLVM-backed languages
On Tue, Jul 26, 2016 at 12:30 PM, Zachary Turner <zturner at google.com> wrote: > I wrote most of the pdb code in llvm so far. As Reid suggested, if you > look in DebugInfo/PDB/Raw there is a significant amount of code dealing > with msf files and raw pdb streams. If you build the llvm-pdbdump tool you > can run it with the "raw" subcommand to dump lots of low level
2016 Jul 29
2
Gauging interest in generating PDBs from LLVM-backed languages
...icrosoft.com/en-us/kb/3035999 > > If you open the file cmake/config-ix.cmake you will find the place where > cmake check if the DIA_SDK is present (there is also a note saying that > sometime this is a Windows bug). > > You can modify the line "set(MSVC_DIA_SDK_DIR "$ENV{VSINSTALLDIR}DIA > SDK”)” by "set(MSVC_DIA_SDK_DIR “C:\\path\\to\\DIA SDK”)”. > > Awesome, that did the trick - thanks! It turns out I was running CMake without the VS Environment vars set, so %VSINSTALLDIR% was empty. Running with the environment set up correctly fixed the problem. On Tue, Ju...
2018 Sep 21
2
can't build/run after adding lib to Fibonacci example, even reverting the complete llvm tree does not help
...C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppCommon.targets 209 "DIA SDK not found" msg seems to be related to https://stackoverflow.com/questions/44481648/llvm-cmake-install-cannot-find-dia-sdk but why do i (maybe) need to set the VSINSTALLDIR when inside of the IDE? any ideas? this is the log that is create ... many... generate.stamp is up-to-date. 1>CMake does not need to re-run because D:/projects/fun/jit_tests/clang_from_src/llvm-build/runtimes/CMakeFiles/generate.stamp is up-to-date. 1>CMake does not need to re-run becau...
2018 Jan 23
0
MachineVerifier and undef
...lls are both > `PDB_ReaderType::DIA`, that means the first IfStmt > in `llvm::pdb::loadDataFromEXE(PDB_ReaderType Type, ...)` is temporarily > useless. Is that right? > > 2) I have visual studio 2015 installed on my computer and there is no an > environment variable called > VSINSTALLDIR. And the `LLVM_ENABLE_DIA_SDK` is 0, so every time need to > call > `llvm::pdb::loadDataFromEXE(PDB_ReaderType Type, ...)`, > it will trigger the "DIA is not installed on the system" error. I want to > known is this kind of behavior correct? > > -------------------------...