Skip to content

Commit

Permalink
Do not allow LLDB to do local debugging on Windows. Fix Vector35#376
Browse files Browse the repository at this point in the history
  • Loading branch information
xusheng6 committed May 28, 2024
1 parent 97dc561 commit 3799022
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/adapters/lldbadapter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ bool LldbAdapterType::CanConnect(BinaryNinja::BinaryView* data)

bool LldbAdapterType::CanExecute(BinaryNinja::BinaryView* data)
{
if (data->GetTypeName() == "PE" && data->GetDefaultArchitecture()->GetName() == "x86")
if (data->GetTypeName() == "PE")
return false;

return true;
Expand Down

0 comments on commit 3799022

Please sign in to comment.