| Age | Commit message (Expand) | Author | Lines |
| 2024-11-09 | Rollup merge of #132552 - taiki-e:sparc-target-feature, r=workingjubilee | Matthias Krüger | -1/+1 |
| 2024-11-09 | Add v8plus target feature to sparc and use it in create_object_file | Taiki Endo | -1/+1 |
| 2024-11-08 | Use lld with non-LLVM backends | bjorn3 | -17/+0 |
| 2024-11-07 | Rollup merge of #130586 - dpaoliello:fixrawdylib, r=wesleywiser | Jubilee | -34/+64 |
| 2024-11-05 | codegen_ssa: use `llvm-objcopy` for macOS strip | David Wood | -5/+17 |
| 2024-11-03 | Rollup merge of #132565 - bjorn3:less_target_name_dependence, r=workingjubilee | Jubilee | -5/+7 |
| 2024-11-03 | Rollup merge of #131222 - thejpster:fix-sparc-v7-symbol-o, r=workingjubilee | Jubilee | -1/+9 |
| 2024-11-03 | compiler: Directly use rustc_abi in codegen | Jubilee Young | -2/+2 |
| 2024-11-03 | Reduce dependence on the target name | bjorn3 | -5/+7 |
| 2024-11-02 | Rename target triple to target tuple in many places in the compiler | Noratrieb | -6/+4 |
| 2024-11-02 | Rollup merge of #131037 - madsmtm:move-llvm-target-versioning, r=petrochenkov | Matthias Krüger | -11/+226 |
| 2024-11-02 | Rollup merge of #131829 - Zalathar:goodbye-zprofile, r=chenyukang | Guillaume Gomez | -21/+4 |
| 2024-11-01 | Emit diagnostics for incorrect deployment targets | Mads Marquart | -9/+37 |
| 2024-11-01 | Move Mach-O platform information to rustc_codegen_ssa::back::apple | Mads Marquart | -2/+17 |
| 2024-11-01 | Move versioned LLVM target creation to rustc_codegen_ssa | Mads Marquart | -10/+182 |
| 2024-10-31 | Remove `""` case from RISC-V `llvm_abiname` match statement | beetrees | -1/+1 |
| 2024-10-31 | Add a comment about `lp64e` still being unstable | Jan Bujak | -0/+1 |
| 2024-10-31 | Remove support for `-Zprofile` (gcov-style coverage instrumentation) | Zalathar | -21/+4 |
| 2024-10-30 | Add `lp64e` RISC-V ABI | Jan Bujak | -1/+1 |
| 2024-10-28 | fix clippy::clone_on_ref_ptr for compiler | klensy | -2/+2 |
| 2024-10-26 | Effects cleanup | Deadbeef | -11/+5 |
| 2024-10-11 | Rollup merge of #129079 - Zoxc:thinlto_imp_symbols, r=wesleywiser | Matthias Krüger | -1/+7 |
| 2024-10-10 | Rollup merge of #131480 - madsmtm:macos-fix-strip-binary, r=nnethercote | Matthias Krüger | -1/+3 |
| 2024-10-10 | Fix hardcoded strip path when cross-compiling from Linux to Darwin | Mads Marquart | -1/+3 |
| 2024-10-10 | Avoid redundant -Wl,-dylib flag when linking | Mads Marquart | -3/+5 |
| 2024-10-07 | Convert `Option<&Lrc<T>>` return types to `Option<&T>`. | Nicholas Nethercote | -3/+2 |
| 2024-10-03 | Generate correct symbols.o for sparc-unknown-none-elf | Jonathan 'theJPster' Pallant | -1/+9 |
| 2024-10-02 | Rollup merge of #131016 - madsmtm:no-sdk-version-in-object, r=jieyouxu | Matthias Krüger | -10/+48 |
| 2024-09-29 | Do not specify an SDK version in object files | Mads Marquart | -3/+7 |
| 2024-09-29 | Document a bit more how the SDK version actually works | Mads Marquart | -7/+41 |
| 2024-09-27 | Only add an automatic SONAME for Rust dylibs | Josh Stone | -15/+70 |
| 2024-09-26 | Move Apple linker args from `rustc_target` to `rustc_codegen_ssa` | Mads Marquart | -1/+132 |
| 2024-09-25 | Rollup merge of #130781 - monkeydbobo:mdb/fix_up_cross_compile_osx, r=davidtwco | Matthias Krüger | -3/+4 |
| 2024-09-24 | Dogfood `feature(file_buffered)` | Josh Stone | -8/+7 |
| 2024-09-24 | Test fixing raw-dylib | Daniel Paoliello | -34/+64 |
| 2024-09-24 | Fix up setting strip = true in Cargo.toml makes build scripts fail in release... | monkeydbobo | -3/+4 |
| 2024-09-22 | Reformat using the new identifier sorting from rustfmt | Michael Goulet | -137/+98 |
| 2024-09-22 | Create _imp__ symbols also when doing ThinLTO | John Kåre Alsaker | -1/+7 |
| 2024-09-18 | Rollup merge of #130116 - veera-sivarajan:freeze-suggestions, r=chenyukang | Matthias Krüger | -2/+2 |
| 2024-09-17 | Rollup merge of #130458 - nnethercote:rustc_codegen_ssa-cleanups, r=jieyouxu | Matthias Krüger | -68/+76 |
| 2024-09-17 | Minimize visibilities. | Nicholas Nethercote | -68/+76 |
| 2024-09-16 | Rollup merge of #123436 - amyspark:allow-msvc-to-use-meson-and-mingw-import-l... | Matthias Krüger | -2/+10 |
| 2024-09-14 | Fix SDKROOT ignore on macOS | Mads Marquart | -1/+1 |
| 2024-09-12 | Implement a Method to Seal `DiagInner`'s Suggestions | Veera | -2/+2 |
| 2024-09-12 | Rollup merge of #130235 - compiler-errors:nested-if, r=michaelwoerister | Stuart Cook | -25/+15 |
| 2024-09-11 | Rollup merge of #130114 - eduardosm:needless-returns, r=compiler-errors | Jubilee | -8/+7 |
| 2024-09-11 | Also fix if in else | Michael Goulet | -25/+15 |
| 2024-09-09 | Rollup merge of #129981 - nnethercote:rm-serialize_bitcode, r=antoyo,tmiasko | Jubilee | -8/+4 |
| 2024-09-09 | Remove needless returns detected by clippy in the compiler | Eduardo Sánchez Muñoz | -8/+7 |
| 2024-09-09 | Remove `serialized_bitcode` from `LtoModuleCodegen`. | Nicholas Nethercote | -8/+4 |