Re: [lldb-dev] Disassembling issue

2019-06-18 Thread Romaric Jodin via lldb-dev
your next message. > > > > Ted > > > > *From:* Romaric Jodin > *Sent:* Thursday, June 13, 2019 1:16 AM > *To:* Ted Woodward > *Cc:* LLDB > *Subject:* [EXT] Re: [lldb-dev] Disassembling issue > > > > Hi Ted, > > > > Thank you for the

Re: [lldb-dev] Disassembling issue

2019-06-13 Thread Ted Woodward via lldb-dev
rch is dpu before the run, and x86_64 after the run, we should look at the RSP log. Before the run, type log enable -f gdb-remote packets Attach the file to your next message. Ted From: Romaric Jodin Sent: Thursday, June 13, 2019 1:16 AM To: Ted Woodward Cc: LLDB Subject: [EXT] Re: [lldb-

Re: [lldb-dev] Disassembling issue

2019-06-12 Thread Romaric Jodin via lldb-dev
Hi Ted, Thank you for the answer. I'm not sure I understand you well. It seems to me that my program call "Disassembler::FindPlugin" with the "m_options.arch" set to "x86_64". But my toolchain does not contain a LLVM supporting x86_64, so it feels normal to me that it is not able to create this di

Re: [lldb-dev] Disassembling issue

2019-06-12 Thread Ted Woodward via lldb-dev
The error is coming from source/Commands/CommandObjectDisassemble.cpp . It’s not able to create the disassembler for your architecture. The call to Disassembler::FindPlugin fails. My guess is something in the call to MCDisasmInstance::Create in source/Plugins/Disassembler/llvm/DisassemblerLLVMC.