Equivalent of cpptools' setupCommands in CodeLLDB? #847
Answered
by
developStorm
developStorm
asked this question in
Q&A
-
I would like to have the debugger ignore some signals. In cpptools (with GDB) this can be done with: "setupCommands": [
{
"description": "ignore SIGUSR1 signal",
"text": "handle SIGUSR1 nostop noprint"
}
] in However, CodeLLDB does not seem to support
Thanks for any help! |
Beta Was this translation helpful? Give feedback.
Answered by
developStorm
Jan 18, 2023
Replies: 1 comment
-
Just figured it out! "preRunCommands": [
"pro hand -p true -n false -s false SIGUSR1"
], |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
developStorm
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Just figured it out!
preRunCommands
is a good fit for this.