Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
4f6f433
Support for visionOS
agg23 Mar 19, 2024
11ea14e
Update visionOS MachO tests to require LLVM 18
agg23 Mar 19, 2024
51777dc
Add missing visionOS target metadata
agg23 Mar 19, 2024
f32ad2b
Fixed VISIONOS_DEPLOYMENT_TARGET envar test
agg23 Mar 19, 2024
f7870a3
Fix test formatting
agg23 Mar 19, 2024
4f7ac51
Fixed incorrectly named sim target in platform-support.md
agg23 Mar 19, 2024
572d6cd
Added note about LLVM 18 requirement
agg23 Mar 19, 2024
52960d4
Fixed builds with modified libc
agg23 Mar 23, 2024
61fd74f
Fixed bad formatting
agg23 Mar 23, 2024
fb09ddb
Added madsmtm as second maintainer
agg23 Mar 24, 2024
72aeeaf
Updated comments
agg23 Apr 2, 2024
288a615
Added target metadata
agg23 Apr 3, 2024
2498a9d
CFI: Restore typeid_for_instance default behavior
rcvalle Apr 5, 2024
0459e55
Fix target-cpu fpu features on Armv7-R, Armv7-M, and Armv8-M
chrisnc Mar 28, 2024
7d00826
Revert #121666
ChrisDenton Apr 5, 2024
8cfd199
Revert "remove miri jobserver workaround"
belovdv Apr 5, 2024
8d17b2d
Add jieyouxu to compiler review rotation and as a reviewer for `tests…
jieyouxu Apr 5, 2024
8b9b024
Fix typo
WaffleLapkin Apr 5, 2024
7659ef4
Use `include` command to reduce code duplication
GuillaumeGomez Apr 5, 2024
74a5bc6
Rollup merge of #121419 - agg23:xrOS-pr, r=davidtwco
GuillaumeGomez Apr 5, 2024
2658823
Rollup merge of #123159 - chrisnc:fix-arm-rm-none-eabihf-features, r=…
GuillaumeGomez Apr 5, 2024
5ceac29
Rollup merge of #123487 - rcvalle:rust-cfi-restore-typeid-for-instanc…
GuillaumeGomez Apr 5, 2024
8a6f9a1
Rollup merge of #123500 - belovdv:remove-miri-jobserver-fixme, r=Ralf…
GuillaumeGomez Apr 5, 2024
1bffe75
Rollup merge of #123505 - ChrisDenton:revert-121666, r=workingjubilee
GuillaumeGomez Apr 5, 2024
7a38225
Rollup merge of #123509 - jieyouxu:add-jieyouxu-review-rotation, r=Ma…
GuillaumeGomez Apr 5, 2024
b3b7f27
Rollup merge of #123514 - WaffleLapkin:stpe, r=compiler-errors
GuillaumeGomez Apr 5, 2024
a074d27
Rollup merge of #123515 - GuillaumeGomez:use-include, r=notriddle
GuillaumeGomez Apr 5, 2024
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
Added target metadata
  • Loading branch information
agg23 committed Apr 3, 2024
commit 288a615ab79ca336af0643eec0d08cc53e1ea142
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ pub fn target() -> Target {
Target {
llvm_target: visionos_llvm_target(arch).into(),
metadata: crate::spec::TargetMetadata {
description: None,
tier: None,
host_tools: None,
std: None,
description: Some("ARM64 Apple visionOS".into()),
tier: Some(3),
host_tools: Some(false),
std: Some(false),
},
pointer_width: 64,
data_layout: "e-m:o-i64:64-i128:128-n32:64-S128".into(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ pub fn target() -> Target {
Target {
llvm_target: visionos_sim_llvm_target(arch).into(),
metadata: crate::spec::TargetMetadata {
description: None,
tier: None,
host_tools: None,
std: None,
description: Some("ARM64 Apple visionOS simulator".into()),
tier: Some(3),
host_tools: Some(false),
std: Some(false),
},
pointer_width: 64,
data_layout: "e-m:o-i64:64-i128:128-n32:64-S128".into(),
Expand Down