-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
ci update freebsd version proposal, freebsd 12 being eol #120869
Conversation
rustbot has assigned @Mark-Simulacrum. Use r? to explicitly pick a reviewer |
Does this mean that the minimum supported version is raised? Or is freebsd backwards-compatible so that builds against a new version still run on the old versiom? (A thing that's, for example, not true for linux glibc). |
6123e25
to
4008e0e
Compare
@rustbot author Please update the PR description with details that @Nilstrieb asked for. It would probably also be a good idea to reflect in the platform support page (https://github.com/rust-lang/rust/blob/master/src/doc/rustc/src/platform-support.md) the target details if this does raise the minimum, so that users have something to reference for future Rust versions. |
4008e0e
to
a8a6822
Compare
@rustbot review |
What is the current minimum freebsd version supported by rustc? The platform support doc page doesn't document this. |
I would say freebsd 12. |
Thank you for adding it! Not in this PR, but it would be nice if you could add a new target documentation page in I just looked it up, the last FreeBSD bump was #97944. It didn't include a blog post (which we do for bumps of more popular targets), so that seems fine. It superseded #89083 which contains more information. Looks like we use FreeBSD artifacts on our CI mirror, so @Mark-Simulacrum (or someone else with permissions) will have to upload them first before this can be merged. |
I've put the artifacts in our mirror (2024-02-18-freebsd-13.2-i386-base.txz and 2024-02-18-freebsd-13.2-amd64-base.txz). Please update the download file to match those, and then we can move ahead. |
c7285bd
to
42d5b87
Compare
@rustbot review |
@bors r+ rollup=iffy |
🌲 The tree is currently closed for pull requests below priority 50. This pull request will be tested once the tree is reopened. |
Issue opened here. |
raising to the lowest still active supported freebsd version. From 13.1 (already eol too), freebsd introduces a cpu affinity layer with linux. It also introduces a api compatible copy_file_range which can be used like its linux's counterpart. The former is essential to build rust-lang#120589, therefore breaks the backward compatibility with the previous FreeBSD releases.
aa6c298
to
65f05af
Compare
@Mark-Simulacrum would it be possible to give another try ? since I ve updated the Docker container version, it should come with a newer clang version. |
Per
and
@rustbot ready |
@bors r+ |
☀️ Test successful - checks-actions |
Finished benchmarking commit (fb32dd4): comparison URL. Overall result: ❌ regressions - no action needed@rustbot label: -perf-regression Instruction countThis is the most reliable metric that we have; it was used to determine the overall result at the top of this comment. However, even this metric can sometimes exhibit noise.
Max RSS (memory usage)Results (primary -3.1%, secondary -2.7%)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.
CyclesThis benchmark run did not return any relevant results for this metric. Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 781.834s -> 781.459s (-0.05%) |
It seems that Cargo distributed by rustup is causing segmentation fault after this change... |
`powerpc64-unknown-freebsd` | ✓ | ✓ | PPC64 FreeBSD (ELFv1 and ELFv2) | ||
`powerpc64le-unknown-freebsd` | | | PPC64LE FreeBSD | ||
`powerpc-unknown-freebsd` | | | PowerPC FreeBSD | ||
`powerpc64-unknown-freebsd` | ✓ | ✓ | PPC64 FreeBSD (ELFv1 and ELFv2, version 13.2) |
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.
PPC64 FreeBSD (ELFv1 and ELFv2, version 13.2)
It seems odd that ELFv1 and 13.N coexist.
https://www.freebsd.org/releases/13.0R/relnotes/
powerpc64 switched to ELFv2 ABI at the same time it switched to LLVM. This brings us to a parity with modern Linux distributions. This also makes the binaries from previous FreeBSD versions incompatible with 13.0-RELEASE. Kernel still supports ELFv1, so jails and chroots using older FreeBSD versions are still compatible. e4399d169acc
Well, it is also odd that this target claims ELFv2 support since our ABI code does not use ELFv2 on this target.
rust/compiler/rustc_target/src/callconv/powerpc64.rs
Lines 102 to 111 in be01dab
let abi = if cx.target_spec().env == "musl" { | |
ELFv2 | |
} else if cx.target_spec().os == "aix" { | |
AIX | |
} else { | |
match cx.data_layout().endian { | |
Endian::Big => ELFv1, | |
Endian::Little => ELFv2, | |
} | |
}; |
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.
Filed #132150 for this.
Pinging target maintainers from #129220: @asomers @MikaelUrankar |
Hmm. AFAIK the segfault has been occurring consistently since nightly-2024-10-22 and that commit was merged in 2024-10-20 (#131772 (comment)), so it is odd that the problem is not occurring in nightly-2024-10-21, which supposedly contains that commit...
|
raising to the lowest still active supported freebsd version.
From 13.1 (already eol too), freebsd introduces a cpu affinity layer
with linux. It also introduces a api compatible copy_file_range which
can be used like its linux's counterpart.
The former is essential to build #120589, therefore breaks the backward
compatibility with the previous FreeBSD releases.
Blocked on #130465