-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix lldb-dap path on Darwin #1008
Fix lldb-dap path on Darwin #1008
Conversation
The `lldb-dap` binary is not in the toolchain directory on Darwin like it is on Linux and Windows. Use `xcrun -find lldb-dap` on Darwin to find the correct `lldb-dap` location.
Has lldb-dap moved? It used to be in the same folder as |
I dont know if its moved, I don't have the Xcode 16 Beta 1 anymore to check, but its in Good catch about |
The important thing is lldb and lldb-dap both come from the same source. If we are using xcrun for lldb then I guess we should do the same for lldb-dap. Ideally we would use the one that comes with the toolchain we are using though. |
The find command can specify toolchain, ex. Seems like maybe only the default toolchain does not have |
@adam-fowler after some double checking, because we're specifying the I just pushed an update that searches the selected toolchain for lldb-dap before falling back to looking in Xcode on Darwin, same as how we were looking for |
Verified with d6c91dd |
The
lldb-dap
binary is not in the toolchain directory on Darwin like it is on Linux and Windows. Usexcrun -find lldb-dap
on Darwin to find the correctlldb-dap
location.