Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Debugging ncurses with Eclipse CDT

I'm writing a C++ application using ncurses in Eclipse CDT however I can't run/debug my app in eclipse because the console in eclipse does not work with curses. My app runs fine if I run it from a terminal but I just added some new code and now I'm getting a segmentation fault so I'd like to use the debugger in eclipse to help me fix the issue. Is there a way to have eclipse run/debug my application but use a different terminal for the output much like when you do "tty /dev/pts/1" in gdb? Or any other way to debug a ncures application in eclipse?

Thx in advance!

like image 351
hdx Avatar asked Oct 14 '10 23:10

hdx


1 Answers

also you should add TERM=xterm to Environment in the Debug Configurations dialog

like image 178
lolikandr Avatar answered Nov 14 '22 11:11

lolikandr