-
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
Improve default target options for x86_64-unknown-linux-none #134765
Improve default target options for x86_64-unknown-linux-none #134765
Conversation
Without a standard library, we cannot unwind, so it should be panic=abort by default. Additionally, it does not have std because while it is Linux, it cannot use libc, which std uses today for Linux.
These commits modify compiler targets. |
The panic abort looks good to me. For context, it was actually more of an oversight since I already use this cargo config in most/all of my test projects: [unstable]
build-std = ["core", "compiler_builtins", "alloc"]
build-std-features = ["compiler-builtins-mem", "panic_immediate_abort"]
[build]
rustflags = ["-Cpanic=abort"]
target = "x86_64-unknown-linux-none" About std support - we might add it in the future, but that's still up for discussion. If we do end up getting std support for the target, changing the default panicking strategy should be fine. I don't think rust targets make any guarantees about that. For the relocation model, I'm running some tests right now. To be honest, I need to check if there was a specific reason for defaulting to PIE or if I just overlooked it when writing the target. I remember having some interesting discussions about this with the maintainer of rustix and origin, which might have factored into the decision - I'll look back at those conversations. |
This comment has been minimized.
This comment has been minimized.
In general targets are not beholden to such, no. |
After digging deeper, I have some reservations about switching to a static relocation model. One of the primary goals with this target is enabling developers to write both a libc and dynamic linker in rust. This means we need to support building shared objects that are themselves dynamically linked. From what I understand, supporting dynamic linking requires the target to use a pic model by default. This is actually why the ci is failing with: "targets that support dynamic linking must use the `pic` relocation model" It seems we need to keep the current default. While this target is somewhat unique, I suspect this requirements here exists for good technical reasons. As an alternative solution, what if we added a note in the target documentation recommending the static relocation model for most use cases, along with an example cargo config showing how to set this up? |
I believe people can still override the default, no? |
They can ovveride the relocation model, which is what you are "supposed" to do right now. But afaik the target is what decides if dynamic relocation is supported or not. |
dc93f1d
to
6bbedd0
Compare
That makes sense. In that case, I will leave it as PIE by default. I added that to the documentation. |
LGTM |
src/doc/rustc/src/platform-support/x86_64-unknown-linux-none.md
Outdated
Show resolved
Hide resolved
PR description and PR diff do not seem to be in sync any more. |
6bbedd0
to
b235cc9
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.
Thanks, you can r=me after PR CI is green, since the changes looks good to the target maintainer as well.
FWIW I think we can consider #134763 "fixed" in that we now explicitly document that PIE is used by default, and the user can override this default with
EDIT: nevermind, I don't think the changes here specifically needs relnotes |
|
…illy, r=jieyouxu Improve default target options for x86_64-unknown-linux-none Without a standard library, we cannot unwind, so it should be panic=abort by default. Additionally, it does not have std because while it is Linux, it cannot use libc, which std uses today for Linux. Using PIE by default may be surprising to users, as shown in rust-lang#134763, so I've documented it explicitly. I'm not sure if we want to count that as fixing the issue or not. cc `@morr0ne,` as you added the target (and are the maintainer), and `@Noratrieb,` who reviewed that PR (:D).
☀️ Test successful - checks-actions |
Finished benchmarking commit (14ee63a): comparison URL. Overall result: no relevant changes - no action needed@rustbot label: -perf-regression Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)Results (secondary 0.6%)This is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
CyclesResults (secondary 2.0%)This is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 761.047s -> 761.533s (0.06%) |
Without a standard library, we cannot unwind, so it should be panic=abort by default.
Additionally, it does not have std because while it is Linux, it cannot use libc, which std uses today for Linux.
Using PIE by default may be surprising to users, as shown in #134763, so I've documented it explicitly. I'm not sure if we want to count that as fixing the issue or not.
cc @morr0ne, as you added the target (and are the maintainer), and @Noratrieb, who reviewed that PR (:D).