| Age | Commit message (Expand) | Author | Lines |
| 2024-08-20 | Make import libraries compatible with wholearchive | Chris Denton | -1/+5 |
| 2024-08-17 | Always use ar_archive_writer for import libs | Chris Denton | -3/+83 |
| 2024-08-16 | Add `warn(unreachable_pub)` to `rustc_codegen_ssa`. | Nicholas Nethercote | -3/+3 |
| 2024-08-15 | Auto merge of #128936 - bjorn3:fix_thin_archive_reading, r=jieyouxu | bors | -4/+9 |
| 2024-08-12 | Rollup merge of #128978 - compiler-errors:assert-matches, r=jieyouxu | Guillaume Gomez | -1/+2 |
| 2024-08-11 | Use assert_matches around the compiler | Michael Goulet | -1/+2 |
| 2024-08-11 | Fix review comments and other improvements | bjorn3 | -4/+2 |
| 2024-08-10 | Auto merge of #128400 - petrochenkov:nowhole3, r=bjorn3 | bors | -10/+1 |
| 2024-08-10 | Support reading thin archives in ArArchiveBuilder | bjorn3 | -4/+11 |
| 2024-08-07 | Rollup merge of #128772 - glaubitz:sparc-elf-fix, r=nagisa | Matthias Krüger | -0/+1 |
| 2024-08-07 | Rollup merge of #128206 - bjorn3:import_lib_writing_refactor, r=jieyouxu | Guillaume Gomez | -37/+196 |
| 2024-08-07 | rustc_codegen_ssa: Set architecture for object crate for 32-bit SPARC | John Paul Adrian Glaubitz | -0/+1 |
| 2024-08-03 | Fix linking to sanitizers on Apple targets | Vadim Petrochenkov | -3/+7 |
| 2024-08-03 | linker: Pass fewer search directories to the linker | Vadim Petrochenkov | -38/+56 |
| 2024-08-01 | Rollup merge of #128450 - dpaoliello:coff, r=bjorn3 | Matthias Krüger | -5/+1 |
| 2024-07-31 | Create COFF archives for non-LLVM backends | Daniel Paoliello | -5/+1 |
| 2024-07-31 | Rollup merge of #127830 - tgross35:archive-failure-message, r=BoxyUwU | Matthias Krüger | -2/+5 |
| 2024-07-30 | linker: Remove the "`--whole-archive` in test mode" backcompat hack | Vadim Petrochenkov | -10/+1 |
| 2024-07-30 | Move mingw dlltool invocation to cg_ssa | bjorn3 | -0/+127 |
| 2024-07-30 | Move computation of decorated names out of the create_dll_import_lib method | bjorn3 | -4/+20 |
| 2024-07-30 | Move temp file name generation out of the create_dll_import_lib method | bjorn3 | -6/+9 |
| 2024-07-30 | Introduce create_dll_import_libs function | bjorn3 | -31/+44 |
| 2024-07-29 | Reformat `use` declarations. | Nicholas Nethercote | -81/+71 |
| 2024-07-28 | Rollup merge of #127860 - klensy:dedup, r=Mark-Simulacrum | Guillaume Gomez | -15/+17 |
| 2024-07-28 | adopt object changes | klensy | -15/+17 |
| 2024-07-25 | Auto merge of #127995 - workingjubilee:say-turings-prayer, r=BoxyUwU | bors | -4/+4 |
| 2024-07-20 | compiler: Never debug_assert in codegen | Jubilee Young | -4/+4 |
| 2024-07-19 | Avoid ref when using format! in compiler | Yuri Astrakhan | -6/+6 |
| 2024-07-16 | Rollup merge of #127512 - eggyal:newline-terminate-print-linkargs, r=compiler... | Trevor Gross | -1/+1 |
| 2024-07-16 | Rollup merge of #124033 - bjorn3:ar_archive_writer_0_3_0, r=davidtwco | Trevor Gross | -13/+12 |
| 2024-07-16 | When an archive fails to build, print the path | Trevor Gross | -2/+5 |
| 2024-07-16 | Fix unsafe_op_in_unsafe_fn in compiler | Michael Goulet | -1/+1 |
| 2024-07-09 | Terminate `--print link-args` output with newline | Alan Egerton | -1/+1 |
| 2024-07-07 | Fix review comments | bjorn3 | -1/+1 |
| 2024-07-07 | Sync ar_archive_writer to LLVM 18.1.3 | bjorn3 | -13/+12 |
| 2024-07-07 | use "bootstrap" instead of "rustbuild" in comments and docs | onur-ozkan | -1/+1 |
| 2024-07-02 | linker: Link dylib crates by path | Vadim Petrochenkov | -85/+94 |
| 2024-07-01 | linker: Bail out of rpath logic early if the target doesn't support rpath | Vadim Petrochenkov | -10/+4 |
| 2024-07-01 | linker: Refactor interface for passing arguments to linker | Vadim Petrochenkov | -373/+314 |
| 2024-06-25 | Rollup merge of #126943 - Urgau:dedup-all, r=petrochenkov | Matthias Krüger | -5/+2 |
| 2024-06-25 | De-duplicate all consecutive native libs regardless of their options | Urgau | -5/+2 |
| 2024-06-24 | Rollup merge of #124712 - Enselic:deprecate-inline-threshold, r=pnkfelix | Michael Goulet | -2/+0 |
| 2024-06-19 | Rollup merge of #126594 - zetanumbers:fix-cross-crate-async-drop-glue, r=oli-obk | León Orell Valerian Liehr | -10/+13 |
| 2024-06-18 | Use a dedicated type instead of a reference for the diagnostic context | Oli Scherer | -8/+15 |
| 2024-06-18 | Apply suggestions from oli-obk's review | Daria Sukhonina | -10/+4 |
| 2024-06-18 | Make async drop code more consistent with regular drop code | Daria Sukhonina | -5/+14 |
| 2024-06-16 | Rename InstanceDef -> InstanceKind | Michael Goulet | -5/+5 |
| 2024-06-14 | rustc_codegen_ssa: Remove unused ModuleConfig::inline_threshold | Martin Nordholts | -2/+0 |
| 2024-06-06 | Revert "Rollup merge of #124976 - petrochenkov:usedcrates, r=oli-obk" | Rémy Rakic | -1/+1 |
| 2024-06-05 | Rollup merge of #125861 - name1e5s:fix/rpath_null_panic, r=michaelwoerister | Matthias Krüger | -0/+21 |