Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Changes from 2 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
f4b7735
Rename hir const arg walking functions
BoxyUwU Jun 17, 2025
c9264a1
Don't double visit `HirId`s of inferred const/types
BoxyUwU Jun 17, 2025
2411fba
Link to dev-guide docs
BoxyUwU Jun 18, 2025
fa5895e
Reviews
BoxyUwU Jun 25, 2025
19c6815
Multiple bounds checking elision failures
lucarlig Aug 1, 2025
ae2f8d9
Remove the omit_gdb_pretty_printer_section attribute
bjorn3 Jul 31, 2025
2f60cef
`Interner` arg to `EarlyBinder` does not affect auto traits
Veykril Aug 2, 2025
870b58f
Update E0562 to account for the new impl trait positions
Noratrieb Aug 2, 2025
40f587a
Flatten `hash_owner_nodes` with an early-return
Zalathar Aug 2, 2025
d3e597a
Return a struct with named fields from `hash_owner_nodes`
Zalathar Aug 2, 2025
f87e829
update flags for consistency
Kivooeo Aug 2, 2025
8ca7986
update links
Kivooeo Aug 2, 2025
9743573
cargo update
invalid-email-address Aug 3, 2025
2ddf0ca
Change `ProcRes::print_info` to `format_info`
Zalathar Aug 2, 2025
d1d44d4
Consolidate all `ProcRes` unwinds into one code path
Zalathar Aug 2, 2025
1063b0f
Change `TestCx::error` to `error_prefix`, which returns a string
Zalathar Aug 2, 2025
caa3cf1
explicit tail call tests with indirect operands in LLVM, small test f…
tnuha Aug 3, 2025
f6dcf30
Rollup merge of #142678 - BoxyUwU:gai_cleanup, r=nnethercote
samueltardieu Aug 3, 2025
4010404
Rollup merge of #144650 - Borgerr:additional-tce-tests, r=WaffleLapkin
samueltardieu Aug 3, 2025
e4985b1
Rollup merge of #144738 - bjorn3:remove_omit_gdb_pretty_printer_secti…
samueltardieu Aug 3, 2025
930a31f
Rollup merge of #144790 - lucarlig:pr-bounds-elision, r=compiler-errors
samueltardieu Aug 3, 2025
04463db
Rollup merge of #144805 - Zalathar:proc-res, r=jieyouxu
samueltardieu Aug 3, 2025
d4fa2b1
Rollup merge of #144808 - Veykril:push-uttkuyswqnzt, r=compiler-errors
samueltardieu Aug 3, 2025
1b08e83
Rollup merge of #144816 - Noratrieb:e0562-impl-trait, r=WaffleLapkin
samueltardieu Aug 3, 2025
4a4c157
Rollup merge of #144822 - Zalathar:hash-owner-nodes, r=compiler-errors
samueltardieu Aug 3, 2025
dc961ce
Rollup merge of #144824 - Kivooeo:update-links, r=Noratrieb
samueltardieu Aug 3, 2025
9a04f64
Rollup merge of #144829 - Kivooeo:strip-flag, r=WaffleLapkin
samueltardieu Aug 3, 2025
ba2c7ba
Rollup merge of #144843 - rust-lang:cargo_update, r=clubby789
samueltardieu Aug 3, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions compiler/rustc_codegen_ssa/src/back/link.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1011,11 +1011,12 @@ fn link_natively(
(Strip::Debuginfo, _) => {
strip_with_external_utility(sess, stripcmd, out_filename, &["--strip-debug"])
}
// Per the manpage, `-x` is the maximum safe strip level for dynamic libraries. (#93988)

// Per the manpage, --discard-all is the maximum safe strip level for dynamic libraries. (#93988)
(
Strip::Symbols,
CrateType::Dylib | CrateType::Cdylib | CrateType::ProcMacro | CrateType::Sdylib,
) => strip_with_external_utility(sess, stripcmd, out_filename, &["-x"]),
) => strip_with_external_utility(sess, stripcmd, out_filename, &["--discard-all"]),
(Strip::Symbols, _) => {
strip_with_external_utility(sess, stripcmd, out_filename, &["--strip-all"])
}
Expand Down