Steven
Steven

Reputation: 31

Clion on macos meet "Debugger process finished with exit code 15"

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? enter image description here

Upvotes: 1

Views: 1409

Answers (3)

Dhanajit Kapali
Dhanajit Kapali

Reputation: 11

For MAC Users -> add 127.0.0.1 localhost in your hosts

sudo nano /private/etc/hosts

Upvotes: 0

0x822a5b87
0x822a5b87

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

feidaodalian
feidaodalian

Reputation: 51

add 127.0.0.1 localhost in you hosts

Upvotes: 5

Related Questions