Skip to content
This repository was archived by the owner on Jun 25, 2020. It is now read-only.

Commit 8e76040

Browse files
committed
Added lldb rust formatters startup commands to lldb if debugging Rust
1 parent 9d53896 commit 8e76040

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

src/debug_lldb.cc

+7-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ std::tuple<std::vector<std::string>, std::string, std::vector<std::string> > Deb
8989

9090
void Debug::LLDB::start(const std::string &command, const boost::filesystem::path &path,
9191
const std::vector<std::pair<boost::filesystem::path, int> > &breakpoints,
92-
const std::string &remote_host) {
92+
const std::vector<std::string> &startup_commands, const std::string &remote_host) {
9393
if(!debugger) {
9494
lldb::SBDebugger::Initialize();
9595
debugger=std::make_unique<lldb::SBDebugger>(lldb::SBDebugger::Create(true, log, nullptr));
@@ -181,6 +181,12 @@ void Debug::LLDB::start(const std::string &command, const boost::filesystem::pat
181181
debug_thread.join();
182182
for(auto &handler: on_start)
183183
handler(*process);
184+
185+
for(auto &command: startup_commands) {
186+
lldb::SBCommandReturnObject command_return_object;
187+
debugger->GetCommandInterpreter().HandleCommand(command.c_str(), command_return_object, false);
188+
}
189+
184190
debug_thread=std::thread([this]() {
185191
lldb::SBEvent event;
186192
while(true) {

src/debug_lldb.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ namespace Debug {
4747

4848
void start(const std::string &command, const boost::filesystem::path &path="",
4949
const std::vector<std::pair<boost::filesystem::path, int> > &breakpoints={},
50-
const std::string &remote_host="");
50+
const std::vector<std::string> &startup_commands={}, const std::string &remote_host="");
5151
void continue_debug(); //can't use continue as function name
5252
void stop();
5353
void kill();

src/project.cc

+13-1
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,19 @@ void Project::LLDB::debug_start() {
365365
});
366366
on_event_it=std::prev(Debug::LLDB::get().on_event.end());
367367

368-
Debug::LLDB::get().start(*run_arguments, *project_path, breakpoints, remote_host);
368+
std::vector<std::string> startup_commands;
369+
if(dynamic_cast<CargoBuild*>(self->build.get())) {
370+
std::stringstream istream, ostream;
371+
if(Terminal::get().process(istream, ostream, "rustc --print sysroot")==0) {
372+
auto sysroot=ostream.str();
373+
while(!sysroot.empty() && (sysroot.back()=='\n' || sysroot.back()=='\r'))
374+
sysroot.pop_back();
375+
startup_commands.emplace_back("command script import \""+sysroot+"/lib/rustlib/etc/lldb_rust_formatters.py\"");
376+
startup_commands.emplace_back("type summary add --no-value --python-function lldb_rust_formatters.print_val -x \".*\" --category Rust");
377+
startup_commands.emplace_back("type category enable Rust");
378+
}
379+
}
380+
Debug::LLDB::get().start(*run_arguments, *project_path, breakpoints, std::move(startup_commands), remote_host);
369381
});
370382
}
371383
});

0 commit comments

Comments
 (0)