We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If you install gdb using macOS, it gets renamed to ggdb. (E.g., see this SO post.)
It would be helpful to have cgreen-debug check for this automatically, which can be done easily by switching the last few lines of the script to:
if command -v cgdb ; then debugger=cgdb elif command -v ggdb ; then debugger=ggdb # MacPorts renames gdb "ggdb" to avoid name collisions else debugger=gdb fi
(This issue is a reminder to myself to fix this, which I plan on doing once #246 is merged.)
The text was updated successfully, but these errors were encountered:
[tools][debug] Add a --debugger option to cgreen-debug
1155cac
This might actually help with #249
6a9a90a
No branches or pull requests
If you install gdb using macOS, it gets renamed to ggdb. (E.g., see this SO post.)
It would be helpful to have cgreen-debug check for this automatically, which can be done easily by switching the last few lines of the script to:
(This issue is a reminder to myself to fix this, which I plan on doing once #246 is merged.)
The text was updated successfully, but these errors were encountered: