views:

19

answers:

1

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!

A: 

I found this post about redirecting the output to a terminal on the CDT Newsgroups that might work for you.

Thomas
This looks promising! I'll give it a shot! Thx!
hdx