Skip to content

Commit 3186fa1

Browse files
committed
Add QNX NTO platform support
1 parent fd0aed5 commit 3186fa1

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ cpp_demangle = { default-features = false, version = "0.4.0", optional = true, f
4242
[target.'cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp"))))'.dependencies]
4343
miniz_oxide = { version = "0.7.0", default-features = false }
4444
addr2line = { version = "0.22.0", default-features = false }
45-
libc = { version = "0.2.146", default-features = false }
45+
libc = { version = "0.2.156", default-features = false }
4646

4747
[target.'cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp"))))'.dependencies.object]
4848
version = "0.36.0"

crates/as-if-std/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ bench = false
1414
[dependencies]
1515
cfg-if = "1.0"
1616
rustc-demangle = "0.1.21"
17-
libc = { version = "0.2.146", default-features = false }
17+
libc = { version = "0.2.156", default-features = false }
1818

1919
[target.'cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp"))))'.dependencies]
2020
miniz_oxide = { version = "0.7.0", optional = true, default-features = false }

src/backtrace/mod.rs

-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,6 @@ cfg_if::cfg_if! {
176176
unix,
177177
not(target_os = "emscripten"),
178178
not(all(target_os = "ios", target_arch = "arm")),
179-
not(all(target_os = "nto", target_env = "nto70")),
180179
),
181180
all(
182181
target_env = "sgx",

src/symbolize/gimli.rs

+1
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,7 @@ cfg_if::cfg_if! {
226226
target_os = "hurd",
227227
target_os = "openbsd",
228228
target_os = "netbsd",
229+
target_os = "nto",
229230
all(target_os = "android", feature = "dl_iterate_phdr"),
230231
),
231232
not(target_env = "uclibc"),

0 commit comments

Comments
 (0)