File tree 4 files changed +9
-1
lines changed
compiler/rustc_target/src/spec
4 files changed +9
-1
lines changed Original file line number Diff line number Diff line change
1
+ pub use crate :: spec:: aarch64_unknown_fuchsia:: target;
Original file line number Diff line number Diff line change @@ -981,7 +981,7 @@ impl fmt::Display for StackProtector {
981
981
}
982
982
983
983
macro_rules! supported_targets {
984
- ( $( ( $triple: literal, $module: ident ) , ) + ) => {
984
+ ( $( ( $triple: literal, $module: ident) , ) + ) => {
985
985
$( mod $module; ) +
986
986
987
987
/// List of supported targets
@@ -1109,7 +1109,11 @@ supported_targets! {
1109
1109
( "x86_64-apple-darwin" , x86_64_apple_darwin) ,
1110
1110
( "i686-apple-darwin" , i686_apple_darwin) ,
1111
1111
1112
+ // FIXME(fuchsia): Remove aarch64-fuchsia in favor of aarch64-unknown-fuchsia
1113
+ ( "aarch64-fuchsia" , aarch64_fuchsia) ,
1112
1114
( "aarch64-unknown-fuchsia" , aarch64_unknown_fuchsia) ,
1115
+ // FIXME(fuchsia): Remove x86_64-fuchsia in favor of x86_64-unknown-fuchsia
1116
+ ( "x86_64-fuchsia" , x86_64_fuchsia) ,
1113
1117
( "x86_64-unknown-fuchsia" , x86_64_unknown_fuchsia) ,
1114
1118
1115
1119
( "avr-unknown-gnu-atmega328" , avr_unknown_gnu_atmega328) ,
Original file line number Diff line number Diff line change
1
+ pub use crate :: spec:: x86_64_unknown_fuchsia:: target;
Original file line number Diff line number Diff line change @@ -124,6 +124,7 @@ target | std | notes
124
124
-------|:---:|-------
125
125
` aarch64-apple-ios ` | ✓ | ARM64 iOS
126
126
[ ` aarch64-apple-ios-sim ` ] ( platform-support/aarch64-apple-ios-sim.md ) | ✓ | Apple iOS Simulator on ARM64
127
+ ` aarch64-fuchsia ` | ✓ | Alias for ` aarch64-unknown-fuchsia `
127
128
` aarch64-unknown-fuchsia ` | ✓ | ARM64 Fuchsia
128
129
[ ` aarch64-linux-android ` ] ( platform-support/android.md ) | ✓ | ARM64 Android
129
130
` aarch64-unknown-none-softfloat ` | * | Bare ARM64, softfloat
@@ -177,6 +178,7 @@ target | std | notes
177
178
` wasm32-wasi ` | ✓ | WebAssembly with WASI
178
179
` x86_64-apple-ios ` | ✓ | 64-bit x86 iOS
179
180
[ ` x86_64-fortanix-unknown-sgx ` ] ( platform-support/x86_64-fortanix-unknown-sgx.md ) | ✓ | [ Fortanix ABI] for 64-bit Intel SGX
181
+ ` x86_64-fuchsia ` | ✓ | Alias for ` x86_64-unknown-fuchsia `
180
182
` x86_64-unknown-fuchsia ` | ✓ | 64-bit Fuchsia
181
183
[ ` x86_64-linux-android ` ] ( platform-support/android.md ) | ✓ | 64-bit x86 Android
182
184
` x86_64-pc-solaris ` | ✓ | 64-bit Solaris 10/11, illumos
You can’t perform that action at this time.
0 commit comments