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

Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
fc7de99
Ensure we emit an allocator shim when only some crate types need one
bjorn3 Aug 28, 2025
1d30900
Fix typo in comment
bjorn3 Aug 28, 2025
f4888c2
Correctly handle different crate types disagreeing if the allocator s…
bjorn3 Aug 28, 2025
0711bba
Ignore test when dylibs are not supported
bjorn3 Aug 31, 2025
f696cd8
fix: Filter suggestion parts that match existing code
Muscraft Aug 28, 2025
5e9b655
Correct typo in `rustc_errors` comment
smoelius Sep 2, 2025
5b43244
Add LSX accelerated implementation for source file analysis
heiher Aug 28, 2025
a8537ab
Remove special implementation of `PartialEq` for `InvisibleOrigin` ou…
Kobzol Sep 1, 2025
5d9f8fc
llvm: nvptx: Layout update to match LLVM
maurer Sep 2, 2025
5a9e2e4
docs(std): add missing closing code block fences in doc comments
AudaciousAxiom Sep 2, 2025
54a5450
rustdoc-search: add test case for indexing every item type
notriddle Sep 2, 2025
dd8df3b
htmldocck: fix a bug in relative paths / globs
notriddle Sep 2, 2025
af0d6f1
compiletest: cygwin follows windows in using PATH for dynamic libraries
jeremyd2019 Sep 2, 2025
3fe56a1
Rollup merge of #145962 - bjorn3:linkage_fixes, r=WaffleLapkin
tgross35 Sep 3, 2025
bb3044e
Rollup merge of #145963 - heiher:src-analysis-lsx, r=lqd
tgross35 Sep 3, 2025
1b4ffaf
Rollup merge of #146090 - Kobzol:invisible-origin-eq, r=petrochenkov
tgross35 Sep 3, 2025
ebfdc11
Rollup merge of #146120 - smoelius:patch-3, r=lqd
tgross35 Sep 3, 2025
d184520
Rollup merge of #146121 - Muscraft:filter-suggestion-parts, r=petroch…
tgross35 Sep 3, 2025
2fb87d5
Rollup merge of #146131 - notriddle:rustdoc-search-load-itemtype-test…
tgross35 Sep 3, 2025
8a6cfcb
Rollup merge of #146134 - maurer:nvptx-sync, r=durin42
tgross35 Sep 3, 2025
6016718
Rollup merge of #146136 - AudaciousAxiom:docs/missing-closing-code-bl…
tgross35 Sep 3, 2025
51d7cad
Rollup merge of #146140 - jeremyd2019:patch-1, r=jieyouxu
tgross35 Sep 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
Prev Previous commit
Next Next commit
Fix typo in comment
  • Loading branch information
bjorn3 committed Aug 29, 2025
commit 1d309008306f6695bdbbd535245067202ab44802
2 changes: 1 addition & 1 deletion compiler/rustc_codegen_ssa/src/back/linker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1827,7 +1827,7 @@ fn exported_symbols_for_non_proc_macro(
let export_threshold = symbol_export::crates_export_threshold(&[crate_type]);
for_each_exported_symbols_include_dep(tcx, crate_type, |symbol, info, cnum| {
// Do not export mangled symbols from cdylibs and don't attempt to export compiler-builtins
// from any cdylib. The latter doesn't work anyway as we use hidden visibility for
// from any dylib. The latter doesn't work anyway as we use hidden visibility for
// compiler-builtins. Most linkers silently ignore it, but ld64 gives a warning.
if info.level.is_below_threshold(export_threshold) && !tcx.is_compiler_builtins(cnum) {
symbols.push((
Expand Down
Loading