Re: [lldb-dev] lldb debug jit-compiled code with llvm on windows

2015-11-19 Thread Tamas Berghammer via lldb-dev
In theory you don't have to do anything special to debug some JIT-ed code as everything should just work (based on the gdb jit interface). In practice I tried it out a few days ago and it wasn't working at all even in the case when the application is launched under LLDB (not with attach). LLDB was

[lldb-dev] lldb debug jit-compiled code with llvm on windows

2015-11-19 Thread haifeng_q via lldb-dev
hi, process A generate function Func1 code with llvm jit compiler, and calls Func1. modeled on "Kaleidoscope: Adding Debug Information" add debug information. how to use LLDB to attach process A to debug this function, add a breakpoint in the function? thanks!___