JDevlieghere created this revision. JDevlieghere added reviewers: jasonmolenda, aprantl. Herald added a project: All. JDevlieghere requested review of this revision.
On the Swift forums [1][2], people are disabling SIP in order to debug process that are missing the get-task-allow entitlement. Improve the error to give developers a hint at the potential issues. [1] https://forums.swift.org/t/yo-apple-xcode-debugging-swift-is-still-horribly-broken/62702/26 [2] https://forums.swift.org/t/finding-cycles-with-the-memory-graph-debugger-with-swift-pm-projects/62769/7 rdar://113704200 https://reviews.llvm.org/D157640 Files: lldb/tools/debugserver/source/DNB.cpp Index: lldb/tools/debugserver/source/DNB.cpp =================================================================== --- lldb/tools/debugserver/source/DNB.cpp +++ lldb/tools/debugserver/source/DNB.cpp @@ -382,11 +382,15 @@ if (err_str && err_len > 0) { if (launch_err.AsString()) { ::snprintf(err_str, err_len, - "failed to get the task for process %i (%s)", pid, + "failed to get the task for process %i: %s", pid, launch_err.AsString()); } else { ::snprintf(err_str, err_len, - "failed to get the task for process %i", pid); + "failed to get the task for process %i: this likely " + "means the process cannot be debugged, either because " + "it's a system process or because the process is " + "missing the get-task-allow entitlement.", + pid); } } } else {
Index: lldb/tools/debugserver/source/DNB.cpp =================================================================== --- lldb/tools/debugserver/source/DNB.cpp +++ lldb/tools/debugserver/source/DNB.cpp @@ -382,11 +382,15 @@ if (err_str && err_len > 0) { if (launch_err.AsString()) { ::snprintf(err_str, err_len, - "failed to get the task for process %i (%s)", pid, + "failed to get the task for process %i: %s", pid, launch_err.AsString()); } else { ::snprintf(err_str, err_len, - "failed to get the task for process %i", pid); + "failed to get the task for process %i: this likely " + "means the process cannot be debugged, either because " + "it's a system process or because the process is " + "missing the get-task-allow entitlement.", + pid); } } } else {
_______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits