mdelfede Messages: 1310 Registered: September 2007
Ultimate Contributor
luzr wrote on Mon, 17 March 2008 16:22
In ide/Host.cpp:
................................
#ifdef PLATFORM_POSIX
/* if(console) // why this does not work?!
cmdline = "/usr/bin/xterm -hold -e " + cmdline;*/
................
Mirek
I don't understand your question.... If I add :
................................
#ifdef PLATFORM_POSIX
console = true;
if(console) // why this does not work?!
cmdline = "/usr/bin/xterm -hold -e " + cmdline;
................
That works quite well, opens an xterm and runs app.
The only stuff I don't understand is why 'console' is set to false on entering Launch().
BTW, no crash at all....