File tree 2 files changed +8
-8
lines changed
compiler/rustc_target/src/spec/targets
2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -9,10 +9,10 @@ pub fn target() -> Target {
9
9
Target {
10
10
llvm_target : visionos_llvm_target ( arch) . into ( ) ,
11
11
metadata : crate :: spec:: TargetMetadata {
12
- description : None ,
13
- tier : None ,
14
- host_tools : None ,
15
- std : None ,
12
+ description : Some ( "ARM64 Apple visionOS" . into ( ) ) ,
13
+ tier : Some ( 3 ) ,
14
+ host_tools : Some ( false ) ,
15
+ std : Some ( false ) ,
16
16
} ,
17
17
pointer_width : 64 ,
18
18
data_layout : "e-m:o-i64:64-i128:128-n32:64-S128" . into ( ) ,
Original file line number Diff line number Diff line change @@ -9,10 +9,10 @@ pub fn target() -> Target {
9
9
Target {
10
10
llvm_target : visionos_sim_llvm_target ( arch) . into ( ) ,
11
11
metadata : crate :: spec:: TargetMetadata {
12
- description : None ,
13
- tier : None ,
14
- host_tools : None ,
15
- std : None ,
12
+ description : Some ( "ARM64 Apple visionOS simulator" . into ( ) ) ,
13
+ tier : Some ( 3 ) ,
14
+ host_tools : Some ( false ) ,
15
+ std : Some ( false ) ,
16
16
} ,
17
17
pointer_width : 64 ,
18
18
data_layout : "e-m:o-i64:64-i128:128-n32:64-S128" . into ( ) ,
You can’t perform that action at this time.
0 commit comments