Author: domipheus
Date: Tue Jun  3 09:37:35 2014
New Revision: 210105

URL: http://llvm.org/viewvc/llvm-project?rev=210105&view=rev
Log:
Windows fix: Disable editline for MSVC. Since r208369 there have been issues, 
probably related to the editline wrapper. For now, it's more stable and usable 
disabled.

Modified:
    lldb/trunk/source/Core/IOHandler.cpp

Modified: lldb/trunk/source/Core/IOHandler.cpp
URL: 
http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Core/IOHandler.cpp?rev=210105&r1=210104&r2=210105&view=diff
==============================================================================
--- lldb/trunk/source/Core/IOHandler.cpp (original)
+++ lldb/trunk/source/Core/IOHandler.cpp Tue Jun  3 09:37:35 2014
@@ -352,7 +352,8 @@ IOHandlerEditline::IOHandlerEditline (De
 #ifndef _MSC_VER
     use_editline = m_input_sp->GetFile().GetIsRealTerminal();
 #else
-    use_editline = true;
+    // Editline is causing issues on Windows, so use the fallback.
+    use_editline = false;
 #endif
 
     if (use_editline)


_______________________________________________
lldb-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits

Reply via email to