debugger
debugger copied to clipboard
DbgEng adapter does not work if one first uses LLDB adapter to debug on Windows
Using the LLDB adapter will cause the liblldb.dll to be loaded, which then loads the sytem32 dbgeng DLLs. They are incompatible with the ones the debugger uses. Pretty similar to https://github.com/Vector35/debugger/issues/343.
I have noticed this issue earlier and I have made a mitigation for this. I made the liblldb.dll is delay-loaded. Otherwise, the situation would be worth: liblldb.dll will be loaded on BN startup, which renders DbgEng adapter totally unusable.