about summary refs log tree commit diff
path: root/compiler/rustc_target/src/spec/base/apple/tests.rs
AgeCommit message (Collapse)AuthorLines
2025-08-08Add target_env = "macabi" and target_env = "sim"Mads Marquart-2/+4
2025-04-04refactor: Move Apple OSVersion (back) to rustc_targetMads Marquart-0/+9
Also convert OSVersion into a proper struct for better type-safety.
2025-02-08Rustfmtbjorn3-5/+8
2024-11-01Move versioned LLVM target creation to rustc_codegen_ssaMads Marquart-9/+0
The OS version depends on the deployment target environment variables, the access of which we want to move to later in the compilation pipeline that has access to more information, for example `env_depinfo`.
2024-09-22Reformat using the new identifier sorting from rustfmtMichael Goulet-8/+5
2024-09-05Apple: Refactor deployment target version parsingMads Marquart-0/+9
- Merge minimum OS version list into one function (makes it easier to see the logic in it). - Parse patch deployment target versions. - Consistently specify deployment target in LLVM target (previously omitted on `aarch64-apple-watchos`).
2024-03-23Fixed builds with modified libcAdam Gastineau-1/+1
2024-03-19Fix test formattingAdam Gastineau-1/+5
2024-03-19Fixed VISIONOS_DEPLOYMENT_TARGET envar testAdam Gastineau-1/+1
2024-03-18Support for visionOSAdam Gastineau-2/+4
2024-02-24compiler/rustc_target/src/spec/base/apple/tests.rs: Avoid unnecessary large moveMartin Nordholts-1/+1
Fixes: $ MAGIC_EXTRA_RUSTFLAGS=-Zmove-size-limit=4096 ./x test compiler/rustc_target error: moving 6216 bytes --> compiler/rustc_target/src/spec/base/apple/tests.rs:17:19 | 17 | for target in all_sim_targets { | ^^^^^^^^^^^^^^^ value moved from here | = note: The current maximum size is 4096, but it can be customized with the move_size_limit attribute: `#![move_size_limit = "..."]` = note: `-D large-assignments` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(large_assignments)]`
2023-11-08targets: move target specs to spec/targetsDavid Wood-1/+1
Signed-off-by: David Wood <david@davidtw.co>
2023-11-08target: move base specs to spec/baseDavid Wood-0/+38
Signed-off-by: David Wood <david@davidtw.co>