We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6393621 commit a5f1e21Copy full SHA for a5f1e21
lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
@@ -3672,6 +3672,12 @@ Status ProcessGDBRemote::LaunchAndConnectToDebugserver(
3672
}
3673
3674
#endif
3675
+
3676
+ if (!FileSystem::Instance().Exists(debugserver_path))
3677
+ return Status::FromErrorString("could not find '" DEBUGSERVER_BASENAME
3678
+ "'. Please ensure it is properly installed "
3679
+ "and available in your PATH");
3680
3681
debugserver_launch_info.SetExecutableFile(debugserver_path,
3682
/*add_exe_file_as_first_arg=*/true);
3683
0 commit comments