File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
compiler/rustc_target/src/spec/targets Expand file tree Collapse file tree 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 {
99 Target {
1010 llvm_target : visionos_llvm_target ( arch) . into ( ) ,
1111 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 ) ,
1616 } ,
1717 pointer_width : 64 ,
1818 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 {
99 Target {
1010 llvm_target : visionos_sim_llvm_target ( arch) . into ( ) ,
1111 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 ) ,
1616 } ,
1717 pointer_width : 64 ,
1818 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