[Lldb-commits] [lldb] r210105 - 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.

Colin Riley colin at codeplay.com
Tue Jun 3 07:37:35 PDT 2014


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)





More information about the lldb-commits mailing list