We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 611a766 commit 0b2b800Copy full SHA for 0b2b800
crates/backtrace-sys/build.rs
@@ -89,14 +89,6 @@ fn main() {
89
build.define("_GNU_SOURCE", "1");
90
build.define("_LARGE_FILES", "1");
91
92
- // When we're built as part of the Rust compiler, this is used to enable
93
- // debug information in libbacktrace itself.
94
- if cfg!(feature = "rustc-dep-of-std") {
95
- let any_debug = env::var("RUSTC_DEBUGINFO").unwrap_or_default() == "true"
96
- || env::var("RUSTC_DEBUGINFO_LINES").unwrap_or_default() == "true";
97
- build.debug(any_debug);
98
- }
99
-
100
let syms = [
101
"backtrace_full",
102
"backtrace_dwarf_add",
0 commit comments