Reputation: 31
I'm using clion on mac Catalina 10.15.7. When I debug program with lldb by default, clion return an error "Debugger process finished with exit code 15".
Is there any way to avoid the error?
Upvotes: 1
Views: 1409
Reputation: 11
For MAC Users ->
add 127.0.0.1 localhost
in your hosts
sudo nano /private/etc/hosts
Upvotes: 0
Reputation: 507
I encouted this problem too and mostly this is caused by unhandled exception like access nullptr. use breakpoint to find it will fixed it.
I tried to reproduce it but failed, maybe It's a bug for clion, wish this helpful.
Upvotes: -1