Page 1 of 1

Using Mac Terminal instead of Codelite Terminal

Posted: Tue Mar 11, 2014 7:23 pm
by FAYNUS
I'm using Codelite 5.4 and by default it is using Codelite's built in terminal emulator. How can I change it to use my Mac's Terminal app instead?

Re: Using Mac Terminal instead of Codelite Terminal

Posted: Tue Mar 11, 2014 9:12 pm
by eranif
I dont think its possible under OSX.
Old versions of codelite used Terminal, but it was buggy and causes spawns of too many terminals.

I am curious though, do you have a specific problem with the built-in terminal? or ... ?

Eran

Re: Using Mac Terminal instead of Codelite Terminal

Posted: Tue Mar 11, 2014 10:06 pm
by FAYNUS
The built in terminal does not return a segmentation fault when you try to access values outside of an array's size. I need it to do this because the class I am taking builds my project on a computer that does return a segmentation fault and I want to make sure I don't have that issue before I submit it for grading.

Re: Using Mac Terminal instead of Codelite Terminal

Posted: Tue Mar 11, 2014 10:12 pm
by eranif
Have you consider running your program under gdb?
It will tell you if something crashed ;)

Beside this, point taken, I will make it more clear when a program exits with status code other than 0
You can also execute you program from a plan terminal (outside of codelite to make sure)

Eran

Re: Using Mac Terminal instead of Codelite Terminal

Posted: Wed Mar 12, 2014 10:32 pm
by FAYNUS
Thanks!