[Lldb-commits] [lldb] r275885 - make macOS 'launch in terminal' bring terminal to the front during launch

Todd Fiala via lldb-commits lldb-commits at lists.llvm.org
Mon Jul 18 12:15:38 PDT 2016


Author: tfiala
Date: Mon Jul 18 14:15:38 2016
New Revision: 275885

URL: http://llvm.org/viewvc/llvm-project?rev=275885&view=rev
Log:
make macOS 'launch in terminal' bring terminal to the front during launch

rdar://25235812

Modified:
    lldb/trunk/source/Host/macosx/Host.mm

Modified: lldb/trunk/source/Host/macosx/Host.mm
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Host/macosx/Host.mm?rev=275885&r1=275884&r2=275885&view=diff
==============================================================================
--- lldb/trunk/source/Host/macosx/Host.mm (original)
+++ lldb/trunk/source/Host/macosx/Host.mm Mon Jul 18 14:15:38 2016
@@ -362,6 +362,7 @@ WaitForProcessToSIGSTOP (const lldb::pid
 
 const char *applscript_in_new_tty = 
 "tell application \"Terminal\"\n"
+"   activate\n"
 "	do script \"%s\"\n"
 "end tell\n";
 




More information about the lldb-commits mailing list