Displaying 4 results from an estimated 4 matches for "msvc_dia_sdk_dir".
2016 Jul 27
0
Gauging interest in generating PDBs from LLVM-backed languages
...microsoft.com/en-us/kb/3035999 <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...
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
2015 Dec 09
2
Include all the things
On Wed, Dec 9, 2015 at 7:58 AM David Blaikie <dblaikie at gmail.com> wrote:
> On Wed, Dec 9, 2015 at 7:11 AM, Russell Wallace via llvm-dev <
> llvm-dev at lists.llvm.org> wrote:
>
>> Rather than including llvm header files piecemeal on an ongoing basis,
>> I'm looking for a way to include all such header files once and for all.
>>
>
> That's
2016 Jul 29
2
Gauging interest in generating PDBs from LLVM-backed languages
...blem:
> 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”)”.
>
>
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 th...