File tree Expand file tree Collapse file tree 3 files changed +13
-13
lines changed
compiler/rustc_target/src/spec Expand file tree Collapse file tree 3 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -1244,8 +1244,8 @@ supported_targets! {
1244
1244
1245
1245
( "mips64-openwrt-linux-musl" , mips64_openwrt_linux_musl) ,
1246
1246
1247
- ( "aarch64-unknown-nto-qnx7.1.0 " , aarch64_unknown_nto_qnx_710) ,
1248
- ( "x86_64-pc-nto-qnx7.1.0 " , x86_64_pc_nto_qnx710) ,
1247
+ ( "aarch64-unknown-nto-qnx710 " , aarch64_unknown_nto_qnx_710) ,
1248
+ ( "x86_64-pc-nto-qnx710 " , x86_64_pc_nto_qnx710) ,
1249
1249
}
1250
1250
1251
1251
/// Cow-Vec-Str: Cow<'static, [Cow<'static, str>]>
Original file line number Diff line number Diff line change @@ -214,7 +214,7 @@ target | std | host | notes
214
214
[ ` aarch64-kmc-solid_asp3 ` ] ( platform-support/kmc-solid.md ) | ✓ | | ARM64 SOLID with TOPPERS/ASP3
215
215
[ ` aarch64-nintendo-switch-freestanding ` ] ( platform-support/aarch64-nintendo-switch-freestanding.md ) | * | | ARM64 Nintendo Switch, Horizon
216
216
[ ` aarch64-pc-windows-gnullvm ` ] ( platform-support/pc-windows-gnullvm.md ) | ✓ | ✓ |
217
- [ ` aarch64-unknown-nto-qnx7.1.0 ` ] ( platform-support/nto-qnx.md ) | ? | | ARM64 QNX Neutrino 7.1 RTOS |
217
+ [ ` aarch64-unknown-nto-qnx710 ` ] ( platform-support/nto-qnx.md ) | ? | | ARM64 QNX Neutrino 7.1 RTOS |
218
218
` aarch64-unknown-freebsd ` | ✓ | ✓ | ARM64 FreeBSD
219
219
` aarch64-unknown-hermit ` | ✓ | | ARM64 HermitCore
220
220
` aarch64-unknown-linux-gnu_ilp32 ` | ✓ | ✓ | ARM64 Linux (ILP32 ABI)
@@ -304,7 +304,7 @@ target | std | host | notes
304
304
` x86_64-apple-ios-macabi ` | ✓ | | Apple Catalyst on x86_64
305
305
` x86_64-apple-tvos ` | * | | x86 64-bit tvOS
306
306
[ ` x86_64-apple-watchos-sim ` ] ( platform-support/apple-watchos.md ) | ✓ | | x86 64-bit Apple WatchOS simulator
307
- [ ` x86_64-pc-nto-qnx7.1.0 ` ] ( platform-support/nto-qnx.md ) | ? | | x86 64-bit QNX Neutrino 7.1 RTOS |
307
+ [ ` x86_64-pc-nto-qnx710 ` ] ( platform-support/nto-qnx.md ) | ? | | x86 64-bit QNX Neutrino 7.1 RTOS |
308
308
[ ` x86_64-pc-windows-gnullvm ` ] ( platform-support/pc-windows-gnullvm.md ) | ✓ | ✓ |
309
309
` x86_64-pc-windows-msvc ` | * | | 64-bit Windows XP support
310
310
` x86_64-sun-solaris ` | ? | | Deprecated target for 64-bit Solaris 10/11, illumos
Original file line number Diff line number Diff line change @@ -93,15 +93,15 @@ Run the following:
93
93
94
94
``` bash
95
95
env \
96
- CC_aarch64-unknown-nto-qnx7.1.0 =" qcc" \
97
- CFLAGS_aarch64-unknown-nto-qnx7.1.0 =" -Vgcc_ntoaarch64le_cxx" \
98
- CXX_aarch64-unknown-nto-qnx7.1.0 =" qcc" \
99
- AR_aarch64_unknown_nto_qnx7.1.0 =" ntoaarch64-ar" \
100
- CC_x86_64-pc-nto-qnx7.1.0 =" qcc" \
101
- CFLAGS_x86_64-pc-nto-qnx7.1.0 =" -Vgcc_ntox86_64_cxx" \
102
- CXX_x86_64-pc-nto-qnx7.1.0 =" qcc" \
103
- AR_x86_64_pc_nto_qnx7.1.0 =" ntox86_64-ar" \
104
- ./x.py build --target aarch64-unknown-nto-qnx7.1.0 --target x86_64-pc-nto-qnx7.1.0 --target x86_64-unknown-linux-gnu rustc library/core library/alloc/
96
+ CC_aarch64-unknown-nto-qnx710 =" qcc" \
97
+ CFLAGS_aarch64-unknown-nto-qnx710 =" -Vgcc_ntoaarch64le_cxx" \
98
+ CXX_aarch64-unknown-nto-qnx710 =" qcc" \
99
+ AR_aarch64_unknown_nto_qnx710 =" ntoaarch64-ar" \
100
+ CC_x86_64-pc-nto-qnx710 =" qcc" \
101
+ CFLAGS_x86_64-pc-nto-qnx710 =" -Vgcc_ntox86_64_cxx" \
102
+ CXX_x86_64-pc-nto-qnx710 =" qcc" \
103
+ AR_x86_64_pc_nto_qnx710 =" ntox86_64-ar" \
104
+ ./x.py build --target aarch64-unknown-nto-qnx710 --target x86_64-pc-nto-qnx710 --target x86_64-unknown-linux-gnu rustc library/core library/alloc/
105
105
```
106
106
107
107
## Building Rust programs
You can’t perform that action at this time.
0 commit comments