[lldb-dev] LLDB not loading any debug information on windows

2019-01-16 Thread Christoph Baumann via lldb-dev
Hey, I wrote a simple hello-world program to test lldb on windows: #include int main(int argc, char* argv[]){ printf("hello world"); return(0); } Im compiling with ,clang -g main.c -o

[lldb-dev] LLDB not loading any debug information on windows

2019-03-04 Thread Christoph Baumann via lldb-dev
Hey, in order to try lldb on windows, i built (with clang compiler and lld linker (v7.0.1)) llvm, clang, lld and of course lldb from latest source with the following command line: > cmake -G Ninja -DCMAKE_C_COMPILER=clang-cl -DCMAKE_CXX_COMPILER=clang-cl -DCMAKE_LINKER=lld-link