-
Notifications
You must be signed in to change notification settings - Fork 13.4k
rustc: Store metadata-in-rlibs in object files #84449
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,6 +35,6 @@ rustc_target = { path = "../rustc_target" } | |
rustc_session = { path = "../rustc_session" } | ||
|
||
[dependencies.object] | ||
version = "0.22.0" | ||
version = "0.25.2" | ||
default-features = false | ||
features = ["read_core", "elf", "macho", "pe", "unaligned", "archive"] | ||
features = ["read_core", "elf", "macho", "pe", "unaligned", "archive", "write"] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Once the object dependency of backtrace is updated, this new feature will become unified with libstd resulting in binary bloat. Should we switch rustc to the version 2 resolver already? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No libstd and rustc have separate builds, so they get separate feature sets. This won't affect libstd. Changing the resolver for Cargo also won't affect anything here. |
Uh oh!
There was an error while loading. Please reload this page.