aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Interpreter/CommandInterpreter.cpp
diff options
context:
space:
mode:
authorWalter Erquinigo <wallace@fb.com>2021-11-22 13:13:43 -0800
committerWalter Erquinigo <wallace@fb.com>2021-11-22 13:13:43 -0800
commit91f78eb5cf93e80a0e9679b98bca81291e97e1e1 (patch)
tree9af3e9a21aae2e3c78c2eb69fc3e8cc62fcecf14 /lldb/source/Interpreter/CommandInterpreter.cpp
parentfcd288b52aa708e061ad633c8efa1183a7e6b926 (diff)
downloadllvm-91f78eb5cf93e80a0e9679b98bca81291e97e1e1.zip
llvm-91f78eb5cf93e80a0e9679b98bca81291e97e1e1.tar.gz
llvm-91f78eb5cf93e80a0e9679b98bca81291e97e1e1.tar.bz2
Revert "[lldb] Load the fblldb module automatically"
This reverts commit 2e6a0a8b81d7be948491ce39d241695dc1385429. It was pushed by mistake..
Diffstat (limited to 'lldb/source/Interpreter/CommandInterpreter.cpp')
-rw-r--r--lldb/source/Interpreter/CommandInterpreter.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp
index 1df74f9..301bf94 100644
--- a/lldb/source/Interpreter/CommandInterpreter.cpp
+++ b/lldb/source/Interpreter/CommandInterpreter.cpp
@@ -2352,20 +2352,6 @@ void CommandInterpreter::SourceInitFileHome(CommandReturnObject &result,
result.SetStatus(eReturnStatusSuccessFinishNoResult);
return;
}
-#if !defined(_WIN32)
- // Facebook only:
- //
- // The 'fblldbinit' module will set up the python support specific to FB.
- //
- // As we want to have a mechanism for not triggering this by default, if the
- // user is starting lldb disabling .lldbinit support, then we also don't load
- // this module. This is equivalent to preppending the following line to all
- // .lldbinit files.
- //
- // We don't have the fblldbinit module on windows, so we don't include it for
- // that build.
- HandleCommand("script import fblldbinit", eLazyBoolNo, result);
-#endif
llvm::SmallString<128> init_file;