about summary refs log tree commit diff
diff options
context:
space:
mode:
authorKai Luo <lkail@cn.ibm.com>2023-12-12 10:20:06 +0800
committerKai Luo <lkail@cn.ibm.com>2023-12-12 10:20:06 +0800
commitd2402e3f0d91ef286b3f797ccf09cdeff382f68c (patch)
tree8be2aa0cf4ba82eebfad744383fc5ab52a444edb
parente2a3c9b3f0895c866c104bd2fff2a8bf16eaf964 (diff)
downloadrust-d2402e3f0d91ef286b3f797ccf09cdeff382f68c.tar.gz
rust-d2402e3f0d91ef286b3f797ccf09cdeff382f68c.zip
Add xcoff support
-rw-r--r--library/std/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/Cargo.toml b/library/std/Cargo.toml
index f666b18887c..ef5647f6c10 100644
--- a/library/std/Cargo.toml
+++ b/library/std/Cargo.toml
@@ -30,7 +30,7 @@ rustc-demangle = { version = "0.1.21", features = ['rustc-dep-of-std'] }
 [target.'cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp"))))'.dependencies]
 miniz_oxide = { version = "0.7.0", optional = true, default-features = false }
 addr2line = { version = "0.21.0", optional = true, default-features = false }
-object = { version = "0.32.0", default-features = false, optional = true, features = ['read_core', 'elf', 'macho', 'pe', 'unaligned', 'archive'] }
+object = { version = "0.32.0", default-features = false, optional = true, features = ['read_core', 'elf', 'macho', 'pe', 'xcoff', 'unaligned', 'archive'] }
 
 [dev-dependencies]
 rand = { version = "0.8.5", default-features = false, features = ["alloc"] }