I'd like to have the following command init my .lldbinit.
process handle SIGPROF -n false -p true -s false
The problem is that lldb won't run this command when it starts up and doesn't yet have a process.
error: Aborting reading of commands after command #1: ' process handle SIGPROF -n false -p true -s false' failed with error: No current target; cannot handle signals until you have a valid target and process.
How can I tell lldb to apply this command whenever it does have a process?