| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2023-11-08 | targets: move target specs to spec/targets | David Wood | -23/+0 | |
| Signed-off-by: David Wood <david@davidtw.co> | ||||
| 2023-11-08 | target: move base specs to spec/base | David Wood | -1/+1 | |
| Signed-off-by: David Wood <david@davidtw.co> | ||||
| 2022-11-05 | Cleanup Apple target specifications | BlackHoleFox | -7/+8 | |
| 2022-11-05 | Merge apple_base and apple_sdk_base into one module | BlackHoleFox | -3/+4 | |
| 2022-09-29 | Enable inline stack probes on X86 with LLVM 16 | Josh Stone | -2/+1 | |
| 2022-04-03 | Replace every `String` in Target(Options) with `Cow<'static, str>` | Loïc BRANSTETT | -3/+5 | |
| 2021-08-24 | allow specifying an ios version for the llvm target | Patrick Amrein | -1/+1 | |
| 2021-04-29 | Change to probe-stack=call (instead of inline-or-call) everywhere again, for ↵ | Felix S. Klock II | -1/+2 | |
| now. We had already reverted the change on stable back in PR #83412. Since then, we've had some movement on issue #83139, but not a 100% fix. But also since then, we had bug reported, issue #84667, that looks like outright codegen breakage, rather than problems confined to debuginfo issues. So we are reverting PR #77885 on stable and beta. We'll reland PR #77885 (or some variant) switching back to an LLVM-dependent selection of out-of-line call vs inline-asm, after these other issues have been resolved. | ||||
| 2021-01-16 | Target stack-probe support configurable finely | Simonas Kazlauskas | -2/+6 | |
| This adds capability to configure the target's stack probe support in a more precise manner than just on/off. In particular now we allow choosing between always inline-asm, always call or either one of those depending on the LLVM version on a per-target basis. | ||||
| 2020-11-07 | rustc_target: Move `linker_flavor` from `Target` to `TargetOptions` | Vadim Petrochenkov | -2/+1 | |
| 2020-11-07 | rustc_target: Move `target_vendor` from `Target` to `TargetOptions` | Vadim Petrochenkov | -1/+0 | |
| 2020-11-07 | rustc_target: Move `target_env` from `Target` to `TargetOptions` | Vadim Petrochenkov | -1/+0 | |
| 2020-11-07 | rustc_target: Move `target_os` from `Target` to `TargetOptions` | Vadim Petrochenkov | -2/+1 | |
| 2020-11-07 | rustc_target: Move `target_endian` from `Target` to `TargetOptions` | Vadim Petrochenkov | -1/+0 | |
| 2020-11-07 | rustc_target: Move `target_c_int_width` from `Target` to `TargetOptions` | Vadim Petrochenkov | -1/+0 | |
| 2020-10-15 | Use integer literals for builtin target_pointer_width fields | est31 | -1/+1 | |
| Also change target_pointer_width to pointer_width. Preparation for a subsequent type change of target_pointer_width to an integer together with a rename to pointer_width. On its own, this commit breaks the build. I don't like making build-breaking commits, but in this instance I believe that it makes review easier, as the "real" changes of this PR can be seen much more easily. Result of running: find compiler/rustc_target/src/spec/ -type f -exec sed -i -e 's/target_pointer_width: "\(.*\)"\..*,/pointer_width: \1,/g' {} \; | ||||
| 2020-10-05 | rustc_target: Refactor away `TargetResult` | Vadim Petrochenkov | -4/+4 | |
| Construction of a built-in target is always infallible now, so `TargetResult` is no longer necessary. | ||||
| 2020-09-25 | Defer Apple SDKROOT detection to link time. | Eric Huss | -2/+2 | |
| 2020-08-30 | mv compiler to compiler/ | mark | -0/+21 | |
