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! {
12441244
12451245 ( "mips64-openwrt-linux-musl" , mips64_openwrt_linux_musl) ,
12461246
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) ,
12491249}
12501250
12511251/// 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
214214[ ` aarch64-kmc-solid_asp3 ` ] ( platform-support/kmc-solid.md ) | ✓ | | ARM64 SOLID with TOPPERS/ASP3
215215[ ` aarch64-nintendo-switch-freestanding ` ] ( platform-support/aarch64-nintendo-switch-freestanding.md ) | * | | ARM64 Nintendo Switch, Horizon
216216[ ` 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 |
218218` aarch64-unknown-freebsd ` | ✓ | ✓ | ARM64 FreeBSD
219219` aarch64-unknown-hermit ` | ✓ | | ARM64 HermitCore
220220` aarch64-unknown-linux-gnu_ilp32 ` | ✓ | ✓ | ARM64 Linux (ILP32 ABI)
@@ -304,7 +304,7 @@ target | std | host | notes
304304` x86_64-apple-ios-macabi ` | ✓ | | Apple Catalyst on x86_64
305305` x86_64-apple-tvos ` | * | | x86 64-bit tvOS
306306[ ` 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 |
308308[ ` x86_64-pc-windows-gnullvm ` ] ( platform-support/pc-windows-gnullvm.md ) | ✓ | ✓ |
309309` x86_64-pc-windows-msvc ` | * | | 64-bit Windows XP support
310310` 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:
9393
9494``` bash
9595env \
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/
105105```
106106
107107## Building Rust programs
You can’t perform that action at this time.
0 commit comments