.ide IDE now lauches terminal for console apps while debugging using MinGW. Thanks omari for outstanding contribution in this area. #1370

git-svn-id: svn://ultimatepp.org/upp/trunk@11185 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
klugier 2017-06-18 13:54:22 +00:00
parent 8259cc2d52
commit 5cb60e5e9d

View file

@ -367,6 +367,10 @@ bool Gdb::Create(One<Host>&& _host, const String& exefile, const String& cmdline
Cmd("set print repeat 0");
Cmd("set print null-stop");
#ifdef PLATFORM_WIN32
Cmd("set new-console on");
#endif
if(!IsNull(cmdline))
Cmd("set args " + cmdline);