@@ -66,6 +66,7 @@ mod fuchsia_base;
66
66
mod redox_base;
67
67
mod riscv_base;
68
68
mod wasm32_base;
69
+ mod vxworks_base;
69
70
70
71
#[ derive( Clone , Copy , Debug , Eq , Ord , PartialEq , PartialOrd , Hash ,
71
72
RustcEncodable , RustcDecodable ) ]
@@ -361,7 +362,6 @@ supported_targets! {
361
362
( "thumbv7neon-unknown-linux-gnueabihf" , thumbv7neon_unknown_linux_gnueabihf) ,
362
363
( "armv7-unknown-linux-musleabihf" , armv7_unknown_linux_musleabihf) ,
363
364
( "aarch64-unknown-linux-gnu" , aarch64_unknown_linux_gnu) ,
364
-
365
365
( "aarch64-unknown-linux-musl" , aarch64_unknown_linux_musl) ,
366
366
( "x86_64-unknown-linux-musl" , x86_64_unknown_linux_musl) ,
367
367
( "i686-unknown-linux-musl" , i686_unknown_linux_musl) ,
@@ -476,6 +476,15 @@ supported_targets! {
476
476
( "x86_64-unknown-uefi" , x86_64_unknown_uefi) ,
477
477
478
478
( "nvptx64-nvidia-cuda" , nvptx64_nvidia_cuda) ,
479
+
480
+ ( "x86_64-wrs-vxworks" , x86_64_wrs_vxworks) ,
481
+ ( "i686-wrs-vxworks" , i686_wrs_vxworks) ,
482
+ ( "i586-wrs-vxworks" , i586_wrs_vxworks) ,
483
+ ( "armv7-wrs-vxworks" , armv7_wrs_vxworks) ,
484
+ ( "aarch64-wrs-vxworks" , aarch64_wrs_vxworks) ,
485
+ ( "powerpc-wrs-vxworks" , powerpc_wrs_vxworks) ,
486
+ ( "powerpc-wrs-vxworks-spe" , powerpc_wrs_vxworks_spe) ,
487
+ ( "powerpc64-wrs-vxworks" , powerpc64_wrs_vxworks) ,
479
488
}
480
489
481
490
/// Everything `rustc` knows about how to compile for a specific target.
0 commit comments