We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4083a90 commit 66912b9Copy full SHA for 66912b9
crates/backtrace-sys/build.rs
@@ -14,7 +14,8 @@ fn main() {
14
target.contains("hermit") ||
15
target.contains("wasm32") ||
16
target.contains("fuchsia") ||
17
- target.contains("uclibc")
+ target.contains("uclibc") ||
18
+ target.contains("devkita64")
19
{
20
println!("cargo:rustc-cfg=empty");
21
return;
src/symbolize/mod.rs
@@ -473,6 +473,7 @@ cfg_if::cfg_if! {
473
not(target_os = "fuchsia"),
474
not(target_os = "emscripten"),
475
not(target_env = "uclibc"),
476
+ not(target_env = "libnx"),
477
))] {
478
mod libbacktrace;
479
use self::libbacktrace::resolve as resolve_imp;
0 commit comments