Skip to content

Commit 29ef6cf

Browse files
committed
Auto merge of rust-lang#88506 - Mark-Simulacrum:fix-rlibs, r=ehuss
Fix loading large rlibs Bumps object crate to permit parsing archives with 64-bit table entries. These are primarily encountered when there's more than 4GB of archive data. cc gimli-rs/object#365 Helps with rust-lang#88351, but will also need a beta backport r? `@ehuss` (mostly for the test)
2 parents 0a84708 + 84df1ed commit 29ef6cf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -2297,9 +2297,9 @@ dependencies = [
22972297

22982298
[[package]]
22992299
name = "object"
2300-
version = "0.26.1"
2300+
version = "0.26.2"
23012301
source = "registry+https://github.com/rust-lang/crates.io-index"
2302-
checksum = "ee2766204889d09937d00bfbb7fec56bb2a199e2ade963cab19185d8a6104c7c"
2302+
checksum = "39f37e50073ccad23b6d09bcb5b263f4e76d3bb6038e4a3c08e52162ffa8abc2"
23032303
dependencies = [
23042304
"compiler_builtins",
23052305
"crc32fast",

compiler/rustc_codegen_ssa/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ rustc_target = { path = "../rustc_target" }
3636
rustc_session = { path = "../rustc_session" }
3737

3838
[dependencies.object]
39-
version = "0.26.1"
39+
version = "0.26.2"
4040
default-features = false
4141
features = ["read_core", "elf", "macho", "pe", "unaligned", "archive", "write"]

0 commit comments

Comments
 (0)