Split the PDB tests into DWARF test and actual PDB tests, the latter requiring DIA SDK. Use the new LLVMConfig.cmake LLVM_ENABLE_DIA_SDK symbol to enable the PDB tests rather than relying on llvm/Config/config.h private include file that is not available when building standalone. Differential Revision: https://reviews.llvm.org/D26249 llvm-svn: 290819
7 lines
208 B
C++
7 lines
208 B
C++
// Compile with "cl /c /Zi /GR- test.cpp"
|
|
// Link with "link test.obj /debug /nodefaultlib /entry:main /out:test.exe"
|
|
|
|
int __cdecl _purecall(void) { return 0; }
|
|
|
|
int main(int argc, char **argv) { return 0; }
|