diff options
author | Colin Riley <colin@codeplay.com> | 2014-06-03 14:37:35 +0000 |
---|---|---|
committer | Colin Riley <colin@codeplay.com> | 2014-06-03 14:37:35 +0000 |
commit | 28e7ed12f58dadbb40038be41e7301ac070117f5 (patch) | |
tree | a515c3a1a0391948da694e93e037b618b99822e8 /lldb/source/Core/IOHandler.cpp | |
parent | 740ed906267d4dfc97144578d214f93e118c0dcc (diff) | |
download | bcm5719-llvm-28e7ed12f58dadbb40038be41e7301ac070117f5.tar.gz bcm5719-llvm-28e7ed12f58dadbb40038be41e7301ac070117f5.zip |
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.
llvm-svn: 210105
Diffstat (limited to 'lldb/source/Core/IOHandler.cpp')
-rw-r--r-- | lldb/source/Core/IOHandler.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/source/Core/IOHandler.cpp b/lldb/source/Core/IOHandler.cpp index 79eb89251c8..eb90462afee 100644 --- a/lldb/source/Core/IOHandler.cpp +++ b/lldb/source/Core/IOHandler.cpp @@ -352,7 +352,8 @@ IOHandlerEditline::IOHandlerEditline (Debugger &debugger, #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) |