-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add minimal x86_64-lynx-lynxos178 support. #138011
base: master
Are you sure you want to change the base?
Conversation
r? @nnethercote rustbot has assigned @nnethercote. Use |
These commits modify compiler targets. Some changes occurred in src/doc/rustc/src/platform-support cc @Noratrieb |
cd3db29
to
4777c64
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For the target name, x86_64-unknown-lynxos_178-elf
is fine, but is there any reason to have the elf in the end? It seems unnecessary, unless LynxOS also supports other binaries (we could also write lynx in the vendor field but thats not very important).
compiler/rustc_target/src/spec/targets/x86_64_unknown_lynxos_178_elf.rs
Outdated
Show resolved
Hide resolved
compiler/rustc_target/src/spec/targets/x86_64_unknown_lynxos_178_elf.rs
Outdated
Show resolved
Hide resolved
compiler/rustc_target/src/spec/targets/x86_64_unknown_lynxos_178_elf.rs
Outdated
Show resolved
Hide resolved
compiler/rustc_target/src/spec/targets/x86_64_unknown_lynxos_178_elf.rs
Outdated
Show resolved
Hide resolved
pub(crate) fn opts() -> TargetOptions { | ||
let linker_flavor = LinkerFlavor::Gnu(Cc::No, Lld::No); | ||
let other_linker_flavor = LinkerFlavor::Gnu(Cc::No, Lld::Yes); | ||
let env_prefix = env::var("ENV_PREFIX").unwrap_or("ENV_PREFIX".into()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Requiring ENV_PREFIX
to be set won't work when just loading targets without the intention of compiling got LynxOS. You either need a dummy fallback or preferably not have it at all.
How is your toolchain expected to be used that introduces these requirements? I assume you have the same env var for C code already today.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is a dummy fallback (ENV_PREFIX in this case). Although maybe I should use "<ENV_PREFIX not set>".
The way C development works is you source setup.sh
which sets ENV_PREFIX and GCC_DIR. Then various Makefiles use those environment variables to execute the right compiler and find the right libraries.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right, I overlooked that. This is a very unconventional approach that isn't used in any other place here, but it seems unavoidable here, so it would be nice if we could avoid this whole situtation^^, but if there's no other way we'll have to do it I guess (other than requiring the user to set -Clinker
as mentioned by Björn in the other comment thread).
I'll be looking more into the CI failure, but locally it's passing:
|
@Noratrieb Thanks for the review. Do you prefer I keep the history clean and force push, or do you prefer I make new git commits for your feedback? |
We want to squash it together before merging, but before that it's up to you. Force pushing is fine. |
While still ironing out the review process... https://forge.rust-lang.org/compiler/proposals-and-stabilization.html#targets now says adding new target needs r+ from compiler-leads. So I guess cc @davidtwco and @wesleywiser for this proposal. |
6982378
to
2d6c4fd
Compare
☔ The latest upstream changes (presumably #135651) made this pull request unmergeable. Please resolve the merge conflicts. |
2d6c4fd
to
4a066a0
Compare
Rebased. Thanks. |
r? compiler_leads |
crt_static_respected: true, | ||
panic_strategy: PanicStrategy::Abort, | ||
// Don't rely on the path to find the correct ld. | ||
linker: Some(cow_format!("{cdk_path}/bin/ld")), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this perhaps use gcc as linker driver instead? That should allow avoiding all (or at least most) pre and post link args. And instead of reading ENV_PREFIX
and GCC_DIR
you can have the user pass -Clinker=/path/to/gcc
like we normally require for cross-compiling. Though I don't have a strong opinion on the latter.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not familiar enough with rustc to know what you mean by using "gcc as linker driver." I guess that's different from the linker_flavor TargetOption?
Use of ENV_PREFIX
and GCC_DIR
is baked pretty far into the LynxOS-178 development workflow. There's no way ld can find the libraries in ENV_PREFIX
without it being set, and the same script that sets ENV_PREFIX
also sets GCC_DIR
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The way we generally do linkage on unix-like platforms is by invoking cc
with our libraries and object files. This will ensure that all the C standard libraries are found and we don't have to worry about them ourselves.
I assume that using cc
(or some other GCC binary name) on LynxOS-178 still requires setting these environment variables? Or will that magically pick everything up?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see... I'll experiment with calling gcc instead of ld. It does seem to magically pick up the right thing, and I'm not sure what that magic depends on.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changing to using gcc makes the arguments much simpler, as @bjorn3 mentioned. I think I can get away without relying on ENV_PREFIX at all, because the LynxOS-178 setup also changes the PATH. This is good because now we can find the LynxOS-178 linker, and bad because it masks the linker for the host. I think I know how to fix this, but it's going to take a bit more talking to people and experimenting.
But I am still working on this PR, and hopefully will have something simpler for you all next week.
macro_rules! cow_format { | ||
($arg:expr) => { | ||
// Cow::from works with &str but not with &mut str. | ||
Cow::from(immutable(Box::leak(format!($arg).into_boxed_str()))) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cow::from(immutable(Box::leak(format!($arg).into_boxed_str()))) | |
Cow::Borrowed(Box::leak(format!($arg).into_boxed_str())) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done. Thanks.
The PR title says x86_64-lynxos_178-unknown-elf, but the source code says x86_64-unknown-lynxos_178-elf. I presume the latter is correct? |
4a066a0
to
04130a9
Compare
Yes. Fixing that. Good eye. |
04130a9
to
7f56516
Compare
7f56516
to
3b74771
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
r=me with a rebase
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-lynx-lynxos178 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.
3b74771
to
f2c72cd
Compare
There are a few changes over the last couple of weeks. The main one is that I've changed what Lynx tools are available to rustc, so the rustc code is not a lot simpler than it used to be. As part of this, I also replaced "lynxos_178" with "lynxos178" everywhere to match the triple we use when building gcc for LynxOS-178. |
@Noratrieb Can you take a look at this again? I think it's good to go now. |
Add minimal x86_64-lynx-lynxos178 support. It's possible to build no_std
programs with this compiler.
Tier 3 Target Policy
Tim Newsome (@tnewsome-lynx) will be the designated developer for
x86_64-lynx-lynxos178 support.
I believe the target is named appropriately.
The target name is not confusing.
Done.
All this new code is licensed under the Apache-2.0 license.
Done.
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 notpublically available.
Our intention is to allow anyone with access to LynxOS CDK to use Rust for it.
No problem.
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.
This is documented in
src/doc/rustc/src/platform-support/lynxos178.md
.Understood.
As far as I know this change does not affect any other targets.
Many targets produce assembly for x86_64 so that also works for LynxOS-178.