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 4078b11 commit 4238238Copy full SHA for 4238238
lldb/tools/lldb-dap/src-ts/debug-adapter-factory.ts
@@ -50,13 +50,13 @@ async function findDAPExecutable(): Promise<string | undefined> {
50
const executable = process.platform === "win32" ? "lldb-dap.exe" : "lldb-dap";
51
52
// Prefer lldb-dap from Xcode on Darwin.
53
- const xcrun_dap = findWithXcrun(executable);
+ const xcrun_dap = await findWithXcrun(executable);
54
if (xcrun_dap) {
55
return xcrun_dap;
56
}
57
58
// Find lldb-dap in the user's path.
59
- const path_dap = findInPath(executable);
+ const path_dap = await findInPath(executable);
60
if (path_dap) {
61
return path_dap;
62
0 commit comments