Skip to content

Commit 6c2f00f

Browse files
Rollup merge of #118851 - bzEq:std-xcoff, r=Mark-Simulacrum
[std] Add xcoff in object's feature list object-0.32.0 has supported XCOFF format. And backtrace in submodule has been updated to support XCOFF and AIX. Add `xcoff` to supported feature list to make backtrace built on AIX.
2 parents 15e84eb + 9f64023 commit 6c2f00f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

library/std/Cargo.toml

+5
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,13 @@ rustc-demangle = { version = "0.1.21", features = ['rustc-dep-of-std'] }
3030
[target.'cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp"))))'.dependencies]
3131
miniz_oxide = { version = "0.7.0", optional = true, default-features = false }
3232
addr2line = { version = "0.21.0", optional = true, default-features = false }
33+
34+
[target.'cfg(all(not(target_os = "aix"), not(all(windows, target_env = "msvc", not(target_vendor = "uwp")))))'.dependencies]
3335
object = { version = "0.32.0", default-features = false, optional = true, features = ['read_core', 'elf', 'macho', 'pe', 'unaligned', 'archive'] }
3436

37+
[target.'cfg(target_os = "aix")'.dependencies]
38+
object = { version = "0.32.0", default-features = false, optional = true, features = ['read_core', 'xcoff', 'unaligned', 'archive'] }
39+
3540
[dev-dependencies]
3641
rand = { version = "0.8.5", default-features = false, features = ["alloc"] }
3742
rand_xorshift = "0.3.0"

0 commit comments

Comments
 (0)