Skip to content

Commit 6982378

Browse files
committed
Add minimal x86_64-lynxos_178-unknown-elf support.
It's possible to build no_std programs with this compiler. > A tier 3 target must have a designated developer or developers (the "target maintainers") on record to be CCed when issues arise regarding the target. (The mechanism to track and CC such developers may evolve over time.) Tim Newsome (@tnewsome-lynx) will be the designated developer for x86_64-unknown-lynxos_178-elf support. > Targets must use naming consistent with any existing targets; for instance, a target for the same CPU or OS as an existing Rust target should use the same name for that CPU or OS. Targets should normally use the same names and naming conventions as used elsewhere in the broader ecosystem beyond Rust (such as in other toolchains), unless they have a very good reason to diverge. Changing the name of a target can be highly disruptive, especially once the target reaches a higher tier, so getting the name right is important even for a tier 3 target. I believe the target is named appropriately. > Target names should not introduce undue confusion or ambiguity unless absolutely necessary to maintain ecosystem compatibility. For example, if the name of the target makes people extremely likely to form incorrect beliefs about what it targets, the name should be changed or augmented to disambiguate it. The target name is not confusing. > If possible, use only letters, numbers, dashes and underscores for the name. Periods (.) are known to cause issues in Cargo. Done. > Tier 3 targets may have unusual requirements to build or use, but must not create legal issues or impose onerous legal terms for the Rust project or for Rust developers or users. > The target must not introduce license incompatibilities. > Anything added to the Rust repository must be under the standard Rust license (MIT OR Apache-2.0). All this new code is licensed under the Apache-2.0 license. > The target must not cause the Rust tools or libraries built for any other host (even when supporting cross-compilation to the target) to depend on any new dependency less permissive than the Rust licensing policy. This applies whether the dependency is a Rust crate that would require adding new license exceptions (as specified by the tidy tool in the rust-lang/rust repository), or whether the dependency is a native library or binary. In other words, the introduction of the target must not cause a user installing or running a version of Rust or the Rust tools to be subject to any new license requirements. Done. > Compiling, linking, and emitting functional binaries, libraries, or other code for the target (whether hosted on the target itself or cross-compiling from another target) must not depend on proprietary (non-FOSS) libraries. Host tools built for the target itself may depend on the ordinary runtime libraries supplied by the platform and commonly used by other applications built for the target, but those libraries must not be required for code generation for the target; cross-compilation to the target must not require such libraries at all. For instance, rustc built for the target may depend on a common proprietary C runtime library or console output library, but must not depend on a proprietary code generation library or code optimization library. Rust's license permits such combinations, but the Rust project has no interest in maintaining such combinations within the scope of Rust itself, even at tier 3. I think we're in the clear here. We do link against some static libraries that are proprietary (like libm and libc), but those are not used to generate code. E.g. the VxWorks target requires `wr-c++` to be installed, which is not publically available. > "onerous" here is an intentionally subjective term. At a minimum, "onerous" legal/licensing terms include but are not limited to: non-disclosure requirements, non-compete requirements, contributor license agreements (CLAs) or equivalent, "non-commercial"/"research-only"/etc terms, requirements conditional on the employer or employment of any particular Rust developers, revocable terms, any requirements that create liability for the Rust project or its developers or users, or any requirements that adversely affect the livelihood or prospects of the Rust project or its developers or users. Our intention is to allow anyone with access to LynxOS CDK to use Rust for it. > Neither this policy nor any decisions made regarding targets shall create any binding agreement or estoppel by any party. If any member of an approving Rust team serves as one of the maintainers of a target, or has any legal or employment requirement (explicit or implicit) that might affect their decisions regarding a target, they must recuse themselves from any approval decisions regarding the target's tier status, though they may otherwise participate in discussions. > This requirement does not prevent part or all of this policy from being cited in an explicit contract or work agreement (e.g. to implement or maintain support for a target). This requirement exists to ensure that a developer or team responsible for reviewing and approving a target does not face any legal threats or obligations that would prevent them from freely exercising their judgment in such approval, even if such judgment involves subjective matters or goes beyond the letter of these requirements. No problem. > Tier 3 targets should attempt to implement as much of the standard libraries as possible and appropriate (core for most targets, alloc for targets that can support dynamic memory allocation, std for targets with an operating system or equivalent layer of system-provided functionality), but may leave some code unimplemented (either unavailable or stubbed out as appropriate), whether because the target makes it impossible to implement or challenging to implement. The authors of pull requests are not obligated to avoid calling any portions of the standard library on the basis of a tier 3 target not implementing those portions. With this first PR, only core is supported. I am working on support for the std library and intend to submit that once all the tests are passing. > The target must provide documentation for the Rust community explaining how to build for the target, using cross-compilation if possible. If the target supports running binaries, or running tests (even if they do not pass), the documentation must explain how to run such binaries or tests for the target, using emulation if possible or dedicated hardware if necessary. This is documented in `src/doc/rustc/src/platform-support/lynxos_178.md`. > Tier 3 targets must not impose burden on the authors of pull requests, or other developers in the community, to maintain the target. In particular, do not post comments (automated or manual) on a PR that derail or suggest a block on the PR based on a tier 3 target. Do not send automated messages or notifications (via any medium, including via @) to a PR author or others involved with a PR regarding a tier 3 target, unless they have opted into such messages. > Backlinks such as those generated by the issue/PR tracker when linking to an issue or PR are not considered a violation of this policy, within reason. However, such messages (even on a separate repository) must not generate notifications to anyone involved with a PR who has not requested such notifications. Understood. > Patches adding or updating tier 3 targets must not break any existing tier 2 or tier 1 target, and must not knowingly break another tier 3 target without approval of either the compiler team or the maintainers of the other tier 3 target. > In particular, this may come up when working on closely related targets, such as variations of the same architecture with different features. Avoid introducing unconditional uses of features that another variation of the target may not have; use conditional compilation or runtime detection, as appropriate, to let each target run code supported by that target. As far as I know this change does not affect any other targets. > Tier 3 targets must be able to produce assembly using at least one of rustc's supported backends from any host target. (Having support in a fork of the backend is not sufficient, it must be upstream.) Many targets produce assembly for x86_64 so that also works for LynxOS-178.
1 parent f9e0239 commit 6982378

File tree

10 files changed

+177
-2
lines changed

10 files changed

+177
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
use std::borrow::Cow;
2+
use std::collections::BTreeMap;
3+
use std::env;
4+
5+
use crate::spec::{
6+
Cc, LinkerFlavor, Lld, PanicStrategy, RelocModel, RelroLevel, SplitDebuginfo, StackProbeType,
7+
TargetOptions, cvs,
8+
};
9+
10+
/// Strip mutability from &mut str.
11+
fn immutable(value: &mut str) -> &str {
12+
let immutable = value;
13+
immutable
14+
}
15+
16+
macro_rules! cow_format {
17+
($arg:expr) => {
18+
// Cow::from works with &str but not with &mut str.
19+
Cow::from(immutable(Box::leak(format!($arg).into_boxed_str())))
20+
};
21+
}
22+
23+
pub(crate) fn opts() -> TargetOptions {
24+
let linker_flavor = LinkerFlavor::Gnu(Cc::No, Lld::No);
25+
let other_linker_flavor = LinkerFlavor::Gnu(Cc::No, Lld::Yes);
26+
let env_prefix = env::var("ENV_PREFIX").unwrap_or("ENV_PREFIX".into());
27+
let gcc_dir = env::var("GCC_DIR").unwrap_or("GCC_DIR".into());
28+
let cdk_path = format!("{env_prefix}/cdk/linux-elf-x86_64");
29+
30+
let mut pre_link_args_v = vec![Cow::from("-m"), Cow::from("elf_x86_64_lynx178")];
31+
pre_link_args_v.push(cow_format!("-L{gcc_dir}"));
32+
pre_link_args_v.push(cow_format!("-L{env_prefix}/lib"));
33+
pre_link_args_v.push(cow_format!("-L{env_prefix}/usr/lib"));
34+
35+
let mut post_link_args_v = Vec::new();
36+
post_link_args_v.push(cow_format!("{env_prefix}/lib/crt1.o"));
37+
post_link_args_v.push(cow_format!("{env_prefix}/lib/crti.o"));
38+
post_link_args_v.push(cow_format!("{gcc_dir}/crtbegin.o"));
39+
post_link_args_v.push(cow_format!("{gcc_dir}/crtend.o"));
40+
post_link_args_v.push(cow_format!("{env_prefix}/lib/crtn.o"));
41+
post_link_args_v.push(Cow::from("-lm"));
42+
post_link_args_v.push(Cow::from("-lgcc"));
43+
post_link_args_v.push(Cow::from("--start-group"));
44+
post_link_args_v.push(Cow::from("-lc"));
45+
post_link_args_v.push(Cow::from("-lpthread"));
46+
post_link_args_v.push(Cow::from("--end-group"));
47+
48+
TargetOptions {
49+
os: "lynxos_178".into(),
50+
dynamic_linking: false,
51+
families: cvs!["unix"],
52+
position_independent_executables: false,
53+
static_position_independent_executables: false,
54+
relro_level: RelroLevel::Full,
55+
has_thread_local: false,
56+
crt_static_respected: true,
57+
panic_strategy: PanicStrategy::Abort,
58+
// Don't rely on the path to find the correct ld.
59+
linker: Some(cow_format!("{cdk_path}/bin/ld")),
60+
linker_flavor,
61+
eh_frame_header: false, // GNU ld (GNU Binutils) 2.37.50 does not support --eh-frame-hdr
62+
max_atomic_width: Some(64),
63+
pre_link_args: BTreeMap::from([
64+
(linker_flavor, pre_link_args_v.clone()),
65+
(other_linker_flavor, pre_link_args_v),
66+
]),
67+
post_link_args: BTreeMap::from([
68+
(linker_flavor, post_link_args_v.clone()),
69+
(other_linker_flavor, post_link_args_v),
70+
]),
71+
supported_split_debuginfo: Cow::Borrowed(&[
72+
SplitDebuginfo::Packed,
73+
SplitDebuginfo::Unpacked,
74+
SplitDebuginfo::Off,
75+
]),
76+
relocation_model: RelocModel::Static,
77+
stack_probes: StackProbeType::Inline,
78+
..Default::default()
79+
}
80+
}

compiler/rustc_target/src/spec/base/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ pub(crate) mod linux_gnu;
1818
pub(crate) mod linux_musl;
1919
pub(crate) mod linux_ohos;
2020
pub(crate) mod linux_uclibc;
21+
pub(crate) mod lynxos_178;
2122
pub(crate) mod msvc;
2223
pub(crate) mod netbsd;
2324
pub(crate) mod nto_qnx;

compiler/rustc_target/src/spec/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -2077,6 +2077,7 @@ supported_targets! {
20772077
("riscv32imafc-unknown-nuttx-elf", riscv32imafc_unknown_nuttx_elf),
20782078
("riscv64imac-unknown-nuttx-elf", riscv64imac_unknown_nuttx_elf),
20792079
("riscv64gc-unknown-nuttx-elf", riscv64gc_unknown_nuttx_elf),
2080+
("x86_64-unknown-lynxos_178-elf", x86_64_unknown_lynxos_178_elf),
20802081

20812082
("x86_64-pc-cygwin", x86_64_pc_cygwin),
20822083
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
use crate::spec::{SanitizerSet, StackProbeType, Target, base};
2+
3+
pub(crate) fn target() -> Target {
4+
let mut base = base::lynxos_178::opts();
5+
base.cpu = "x86-64".into();
6+
base.plt_by_default = false;
7+
base.max_atomic_width = Some(64);
8+
base.stack_probes = StackProbeType::Inline;
9+
base.static_position_independent_executables = false;
10+
base.supported_sanitizers = SanitizerSet::ADDRESS
11+
| SanitizerSet::CFI
12+
| SanitizerSet::KCFI
13+
| SanitizerSet::DATAFLOW
14+
| SanitizerSet::LEAK
15+
| SanitizerSet::MEMORY
16+
| SanitizerSet::SAFESTACK
17+
| SanitizerSet::THREAD;
18+
base.supports_xray = true;
19+
20+
Target {
21+
llvm_target: "x86_64-unknown-unknown-gnu".into(),
22+
metadata: crate::spec::TargetMetadata {
23+
description: Some("LynxOS-178".into()),
24+
tier: Some(3),
25+
host_tools: Some(false),
26+
std: Some(false),
27+
},
28+
pointer_width: 64,
29+
data_layout:
30+
"e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-i128:128-f80:128-n8:16:32:64-S128".into(),
31+
arch: "x86_64".into(),
32+
options: base,
33+
}
34+
}

src/bootstrap/src/core/sanity.rs

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ pub struct Finder {
3434
// Targets can be removed from this list once they are present in the stage0 compiler (usually by updating the beta compiler of the bootstrap).
3535
const STAGE0_MISSING_TARGETS: &[&str] = &[
3636
// just a dummy comment so the list doesn't get onelined
37+
"x86_64-unknown-lynxos_178-elf",
3738
];
3839

3940
/// Minimum version threshold for libstdc++ required when using prebuilt LLVM

src/doc/rustc/src/SUMMARY.md

+1
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
- [illumos](platform-support/illumos.md)
6161
- [loongarch\*-unknown-linux-\*](platform-support/loongarch-linux.md)
6262
- [loongarch\*-unknown-none\*](platform-support/loongarch-none.md)
63+
- [\*-lynxos_178-\*](platform-support/lynxos_178.md)
6364
- [m68k-unknown-linux-gnu](platform-support/m68k-unknown-linux-gnu.md)
6465
- [m68k-unknown-none-elf](platform-support/m68k-unknown-none-elf.md)
6566
- [mips64-openwrt-linux-musl](platform-support/mips64-openwrt-linux-musl.md)

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

+1
Original file line numberDiff line numberDiff line change
@@ -418,6 +418,7 @@ target | std | host | notes
418418
[`x86_64-unknown-hurd-gnu`](platform-support/hurd.md) | ✓ | ✓ | 64-bit GNU/Hurd
419419
`x86_64-unknown-l4re-uclibc` | ? | |
420420
[`x86_64-unknown-linux-none`](platform-support/x86_64-unknown-linux-none.md) | * | | 64-bit Linux with no libc
421+
[`x86_64-unknown-lynxos_178-elf`](platform-support/lynxos_178.md) | | | x86_64 LynxOS_178
421422
[`x86_64-unknown-openbsd`](platform-support/openbsd.md) | ✓ | ✓ | 64-bit OpenBSD
422423
[`x86_64-unknown-trusty`](platform-support/trusty.md) | ? | |
423424
`x86_64-uwp-windows-gnu` | ✓ | |
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# `*-lynxos_178-*`
2+
3+
**Tier: 3**
4+
5+
Targets for the LynxOS-178 operating system.
6+
7+
Target triplets available:
8+
- `x86_64-unknown-lynxos_178-elf`
9+
10+
## Target maintainers
11+
12+
- Tim Newsome, https://github.com/tnewsome-lynx
13+
14+
## Requirements
15+
16+
To build Rust programs for LynxOS-178, you must first have LYNX MOSA.ic
17+
installed on the build machine.
18+
19+
This target supports only cross-compilation, from the same hosts supported by
20+
the Lynx CDK.
21+
22+
Currently only `no_std` programs are supported. Work to support `std` is in
23+
progress.
24+
25+
## Building the target
26+
27+
You can build Rust with support for your chosen targets by adding them to the
28+
`target` list in `config.toml`.
29+
30+
When executing `cargo`, the `ENV_PREFIX` environment variable must point at the
31+
LynxOS-178 Environment, e.g. `/opt/lynxos178/2025.01.0-a5b49faee-826/x86/dev`.
32+
33+
## Building Rust programs
34+
35+
Rust does not yet ship pre-compiled artifacts for this target. To compile for
36+
this target, you will either need to build Rust with the target enabled (see
37+
"Building the target" above), or build your own copy of `core` by using
38+
`build-std` or similar.
39+
40+
## Testing
41+
42+
Binaries built with rust can be provided to a LynxOS-178 instance on its file
43+
system, where they can be executed. Rust binaries tend to be large, so it may
44+
be necessary to strip them first.
45+
46+
It is possible to run the Rust testsuite by providing a test runner that takes
47+
the test binary and executes it under LynxOS-178. Most (all?) tests won't run
48+
without std support though, which is not yet supported.
49+
50+
## Cross-compilation toolchains and C code
51+
52+
LYNX MOSA.ic comes with all the tools required to cross-compile C code for
53+
LynxOS-178.

tests/assembly/targets/targets-elf.rs

+3
Original file line numberDiff line numberDiff line change
@@ -640,6 +640,9 @@
640640
//@ revisions: x86_64_wrs_vxworks
641641
//@ [x86_64_wrs_vxworks] compile-flags: --target x86_64-wrs-vxworks
642642
//@ [x86_64_wrs_vxworks] needs-llvm-components: x86
643+
//@ revisions: x86_64_unknown_lynxos_178_elf
644+
//@ [x86_64_unknown_lynxos_178_elf] compile-flags: --target x86_64-unknown-lynxos_178-elf
645+
//@ [x86_64_unknown_lynxos_178_elf] needs-llvm-components: x86
643646
//@ revisions: thumbv6m_nuttx_eabi
644647
//@ [thumbv6m_nuttx_eabi] compile-flags: --target thumbv6m-nuttx-eabi
645648
//@ [thumbv6m_nuttx_eabi] needs-llvm-components: arm

tests/ui/check-cfg/well-known-values.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ warning: unexpected `cfg` condition value: `_UNEXPECTED_VALUE`
201201
LL | target_os = "_UNEXPECTED_VALUE",
202202
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
203203
|
204-
= note: expected values for `target_os` are: `aix`, `amdhsa`, `android`, `cuda`, `cygwin`, `dragonfly`, `emscripten`, `espidf`, `freebsd`, `fuchsia`, `haiku`, `hermit`, `horizon`, `hurd`, `illumos`, `ios`, `l4re`, `linux`, `macos`, `netbsd`, `none`, `nto`, `nuttx`, `openbsd`, `psp`, `psx`, `redox`, `rtems`, `solaris`, `solid_asp3`, `teeos`, `trusty`, `tvos`, `uefi`, `unknown`, `visionos`, `vita`, `vxworks`, `wasi`, `watchos`, `windows`, `xous`, and `zkvm`
204+
= note: expected values for `target_os` are: `aix`, `amdhsa`, `android`, `cuda`, `cygwin`, `dragonfly`, `emscripten`, `espidf`, `freebsd`, `fuchsia`, `haiku`, `hermit`, `horizon`, `hurd`, `illumos`, `ios`, `l4re`, `linux`, `lynxos_178`, `macos`, `netbsd`, `none`, `nto`, `nuttx`, `openbsd`, `psp`, `psx`, `redox`, `rtems`, `solaris`, `solid_asp3`, `teeos`, `trusty`, `tvos`, `uefi`, `unknown`, `visionos`, `vita`, `vxworks`, `wasi`, `watchos`, `windows`, `xous`, and `zkvm`
205205
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg.html> for more information about checking conditional configuration
206206

207207
warning: unexpected `cfg` condition value: `_UNEXPECTED_VALUE`
@@ -274,7 +274,7 @@ LL | #[cfg(target_os = "linuz")] // testing that we suggest `linux`
274274
| |
275275
| help: there is a expected value with a similar name: `"linux"`
276276
|
277-
= note: expected values for `target_os` are: `aix`, `amdhsa`, `android`, `cuda`, `cygwin`, `dragonfly`, `emscripten`, `espidf`, `freebsd`, `fuchsia`, `haiku`, `hermit`, `horizon`, `hurd`, `illumos`, `ios`, `l4re`, `linux`, `macos`, `netbsd`, `none`, `nto`, `nuttx`, `openbsd`, `psp`, `psx`, `redox`, `rtems`, `solaris`, `solid_asp3`, `teeos`, `trusty`, `tvos`, `uefi`, `unknown`, `visionos`, `vita`, `vxworks`, `wasi`, `watchos`, `windows`, `xous`, and `zkvm`
277+
= note: expected values for `target_os` are: `aix`, `amdhsa`, `android`, `cuda`, `cygwin`, `dragonfly`, `emscripten`, `espidf`, `freebsd`, `fuchsia`, `haiku`, `hermit`, `horizon`, `hurd`, `illumos`, `ios`, `l4re`, `linux`, `lynxos_178`, `macos`, `netbsd`, `none`, `nto`, `nuttx`, `openbsd`, `psp`, `psx`, `redox`, `rtems`, `solaris`, `solid_asp3`, `teeos`, `trusty`, `tvos`, `uefi`, `unknown`, `visionos`, `vita`, `vxworks`, `wasi`, `watchos`, `windows`, `xous`, and `zkvm`
278278
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg.html> for more information about checking conditional configuration
279279

280280
warning: 28 warnings emitted

0 commit comments

Comments
 (0)