-
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
Nightly segfaults when compiling Zenoh with non-zero opt-level
#109775
Comments
Could you check which nightly and PR caused this regression with cargo-bisect-rustc ? |
Additionally, are you able to get a backtrace with a debugger? |
Sure, I'll run the bisect tomorrow morning (CET). @Nilstrieb I'll try, but if the builds don't already have debug symbols, I'm not sure how to have x.py spit them out. No need to reply if they're already in there, but if they aren't, instructions would be appreciated :) |
We do ship debug symbols, they may be in a rustup component instead of shipped by default. rustc-dev, I believe? |
Thanks, I'll check that out in roughly 8 hours :) |
We do always ship symbols in the same binary, but we never ship debuginfo. |
Preliminary reduction for |
Minimized: define i128 @test() {
%a = alloca i128
store ptr null, ptr %a
%v = load i128, ptr %a, !range !0
ret i128 %v
}
!0 = !{i128 1, i128 0} |
Upstream fix: llvm/llvm-project@fc6e91f |
@nikic Thank you so much for taking the issue, I did try bisecting, but you had located the issue by the time I made any progress :) |
Hi,
Building Zenoh in release mode with a freshly updated nightly fails with a SIGSEGV (or STATUS_ACCESS_VIOLATION on Windows). This doesn't occur on
stable
orbeta
, or when building with any profile that hasopt-level=0
.I stumbled upon this while trying to measure the performance impact of #109706, which branches from
master
at 82bfda8 and suffers from the same issue.Reproduction
I don't know why, but the problem only appears on
zenoh
(that I'm aware of):cargo +nightly build --release -p zenoh --lib
fails, while any other crate within the same repo works (provided they don't depend onzenoh
)?Meta
rustc --version --verbose
:The same issue arises with the same version of nightly on Windows.
Backtrace
The text was updated successfully, but these errors were encountered: