aboutsummaryrefslogtreecommitdiff
path: root/src/stub/core_impl/base.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/stub/core_impl/base.rs')
-rw-r--r--src/stub/core_impl/base.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/stub/core_impl/base.rs b/src/stub/core_impl/base.rs
index 9110297..eebb715 100644
--- a/src/stub/core_impl/base.rs
+++ b/src/stub/core_impl/base.rs
@@ -195,6 +195,10 @@ impl<T: Target, C: Connection> GdbStubImpl<T, C> {
res.write_str(";qXfer:auxv:read+")?;
}
+ if target.support_libraries_svr4().is_some() {
+ res.write_str(";qXfer:libraries-svr4:read+")?;
+ }
+
HandlerStatus::Handled
}