Open
Description
In general, SIGPIPE are ignored. But by default lldb will capture SIGPIPE and fault, i.e., even if a program ignores SIGPIPE, lldb will capture the SIGPIPE and kill the program. To prevent this, the following lldb command will prevent lldb from stopping on SIGPIPE:
process handle SIGPIPE -n true -p true -s false
Could this command be added to the list of standard commands?
https://github.com/phonegap/ios-deploy/blob/master/src/ios-deploy/ios-deploy.m#L30
alternatively, a command line option to send in additional commands would also work.