Skip to content

Commit 47d7dd0

Browse files
committed
Add QNX 7.0 x86 target
1 parent 2fb0e8d commit 47d7dd0

File tree

7 files changed

+40
-4
lines changed

7 files changed

+40
-4
lines changed

compiler/rustc_target/src/spec/aarch64_unknown_nto_qnx_710.rs

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ pub fn target() -> Target {
2323
LinkerFlavor::Gnu(Cc::Yes, Lld::No),
2424
&["-Vgcc_ntoaarch64le_cxx"],
2525
),
26+
env: "nto71".into(),
2627
..nto_qnx_base::opts()
2728
},
2829
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
use super::nto_qnx_base;
2+
use crate::spec::{Cc, LinkerFlavor, Lld, StackProbeType, Target, TargetOptions};
3+
4+
pub fn target() -> Target {
5+
Target {
6+
llvm_target: "i586-pc-unknown".into(),
7+
pointer_width: 32,
8+
data_layout: "e-m:e-p:32:32-p270:32:32-p271:32:32-p272:64:64-\
9+
f64:32:64-f80:32-n8:16:32-S128"
10+
.into(),
11+
arch: "x86".into(),
12+
options: TargetOptions {
13+
cpu: "pentium4".into(),
14+
max_atomic_width: Some(64),
15+
pre_link_args: TargetOptions::link_args(
16+
LinkerFlavor::Gnu(Cc::Yes, Lld::No),
17+
&["-Vgcc_ntox86_cxx"],
18+
),
19+
env: "nto70".into(),
20+
stack_probes: StackProbeType::X86,
21+
..nto_qnx_base::opts()
22+
},
23+
}
24+
}

compiler/rustc_target/src/spec/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1261,6 +1261,7 @@ supported_targets! {
12611261

12621262
("aarch64-unknown-nto-qnx710", aarch64_unknown_nto_qnx_710),
12631263
("x86_64-pc-nto-qnx710", x86_64_pc_nto_qnx710),
1264+
("i586-pc-nto-qnx700", i586_pc_nto_qnx700),
12641265

12651266
("aarch64-unknown-linux-ohos", aarch64_unknown_linux_ohos),
12661267
("armv7-unknown-linux-ohos", armv7_unknown_linux_ohos),

compiler/rustc_target/src/spec/nto_qnx_base.rs

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ pub fn opts() -> TargetOptions {
44
TargetOptions {
55
crt_static_respected: true,
66
dynamic_linking: true,
7-
env: "nto71".into(),
87
executables: true,
98
families: cvs!["unix"],
109
has_rpath: true,

compiler/rustc_target/src/spec/x86_64_pc_nto_qnx710.rs

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ pub fn target() -> Target {
1515
LinkerFlavor::Gnu(Cc::Yes, Lld::No),
1616
&["-Vgcc_ntox86_64_cxx"],
1717
),
18+
env: "nto71".into(),
1819
..nto_qnx_base::opts()
1920
},
2021
}

src/doc/rustc/src/platform-support.md

+1
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,7 @@ target | std | host | notes
257257
`bpfel-unknown-none` | * | | BPF (little endian)
258258
`hexagon-unknown-linux-musl` | ? | |
259259
`i386-apple-ios` | ✓ | | 32-bit x86 iOS
260+
[`i586-pc-nto-qnx700`](platform-support/nto-qnx.md) | * | | 32-bit x86 QNX Neutrino 7.0 RTOS |
260261
`i686-apple-darwin` | ✓ | ✓ | 32-bit macOS (10.7+, Lion+)
261262
`i686-pc-windows-msvc` | * | | 32-bit Windows XP support
262263
`i686-unknown-haiku` | ✓ | ✓ | 32-bit Haiku

src/doc/rustc/src/platform-support/nto-qnx.md

+12-3
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,18 @@ and [Blackberry QNX][BlackBerry].
1616

1717
## Requirements
1818

19-
Currently, only cross-compilation for QNX Neutrino on AArch64 and x86_64 are supported (little endian).
19+
Currently, the following QNX Neutrino versions and compilation targets are supported:
20+
21+
| QNX Neutrino Version | Target Architecture | Full support | `no_std` support |
22+
|----------------------|---------------------|:------------:|:----------------:|
23+
| 7.1 | AArch64 |||
24+
| 7.1 | x86_64 |||
25+
| 7.0 | x86 | ||
26+
2027
Adding other architectures that are supported by QNX Neutrino is possible.
2128

22-
The standard library, including `core` and `alloc` (with default allocator) are supported.
29+
In the table above, 'full support' indicates support for building Rust applications with the full standard library.
30+
'`no_std` support' indicates that only `core` and `alloc` are available.
2331

2432
For building or using the Rust toolchain for QNX Neutrino, the
2533
[QNX Software Development Platform (SDP)](https://blackberry.qnx.com/en/products/foundation-software/qnx-software-development-platform)
@@ -70,7 +78,7 @@ fn panic(_panic: &PanicInfo<'_>) -> ! {
7078
pub extern "C" fn rust_eh_personality() {}
7179
```
7280

73-
The QNX Neutrino support of Rust has been tested with QNX Neutrino 7.1.
81+
The QNX Neutrino support of Rust has been tested with QNX Neutrino 7.0 and 7.1.
7482

7583
There are no further known requirements.
7684

@@ -80,6 +88,7 @@ For conditional compilation, following QNX Neutrino specific attributes are defi
8088

8189
- `target_os` = `"nto"`
8290
- `target_env` = `"nto71"` (for QNX Neutrino 7.1)
91+
- `target_env` = `"nto70"` (for QNX Neutrino 7.0)
8392

8493
## Building the target
8594

0 commit comments

Comments
 (0)