Skip to content

Commit 7169fe5

Browse files
committed
Fallback to dladdr-based resolve_symbol if backtrace failed.
This programs compiled without -g on macOS still provide the resolve to actual symbols, instead of `<unknown>` everywhere.
1 parent 09f572b commit 7169fe5

File tree

2 files changed

+29
-14
lines changed

2 files changed

+29
-14
lines changed

src/libstd/sys/unix/backtrace/printing/dladdr.rs

-8
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,6 @@ pub fn resolve_symname<F>(frame: Frame,
3131
}
3232
}
3333

34-
pub fn foreach_symbol_fileline<F>(_symbol_addr: Frame,
35-
_f: F,
36-
_: &BacktraceContext) -> io::Result<bool>
37-
where F: FnMut(&[u8], libc::c_int) -> io::Result<()>
38-
{
39-
Ok(false)
40-
}
41-
4234
#[repr(C)]
4335
struct Dl_info {
4436
dli_fname: *const libc::c_char,
+29-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2014-2015 The Rust Project Developers. See the COPYRIGHT
1+
// Copyright 2014-2017 The Rust Project Developers. See the COPYRIGHT
22
// file at the top-level directory of this distribution and at
33
// http://rust-lang.org/COPYRIGHT.
44
//
@@ -8,13 +8,36 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
pub use self::imp::{foreach_symbol_fileline, resolve_symname};
11+
mod dladdr;
12+
13+
use sys::backtrace::BacktraceContext;
14+
use sys_common::backtrace::Frame;
15+
use io;
16+
17+
#[cfg(target_os = "emscripten")]
18+
pub use self::dladdr::resolve_symname;
1219

1320
#[cfg(target_os = "emscripten")]
14-
#[path = "dladdr.rs"]
15-
mod imp;
21+
pub fn foreach_symbol_fileline<F>(_: Frame, _: F, _: &BacktraceContext) -> io::Result<bool>
22+
where
23+
F: FnMut(&[u8], ::libc::c_int) -> io::Result<()>
24+
{
25+
Ok(false)
26+
}
27+
28+
#[cfg(not(target_os = "emscripten"))]
29+
pub use sys_common::gnu::libbacktrace::foreach_symbol_fileline;
1630

1731
#[cfg(not(target_os = "emscripten"))]
18-
mod imp {
19-
pub use sys_common::gnu::libbacktrace::{foreach_symbol_fileline, resolve_symname};
32+
pub fn resolve_symname<F>(frame: Frame, callback: F, bc: &BacktraceContext) -> io::Result<()>
33+
where
34+
F: FnOnce(Option<&str>) -> io::Result<()>
35+
{
36+
::sys_common::gnu::libbacktrace::resolve_symname(frame, |symname| {
37+
if symname.is_some() {
38+
callback(symname)
39+
} else {
40+
dladdr::resolve_symname(frame, callback, bc)
41+
}
42+
}, bc)
2043
}

0 commit comments

Comments
 (0)