-
Notifications
You must be signed in to change notification settings - Fork 13k
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
travis: Enable testing i686 musl #39227
Conversation
r? @arielb1 (rust_highfive has picked a reviewer for you, use r? to override) |
// The unwinder used by i686-unknown-linux-musl, the LLVM libunwind | ||
// implementation, apparently relies on frame pointers existing... somehow. | ||
// It's not clear to me why nor where this dependency is introduced, but the | ||
// test suite doesn't pass with frame pointers eliminated and it passes with |
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.
This sentence contradicts itself by saying test passes and does not pass when the same condition applies.
This fixes the final issues with the target related to unwinding by disabling removal of frame pointers.
d4f0cf5
to
d56999a
Compare
@bors r+ |
📌 Commit d56999a has been approved by |
travis: Enable testing i686 musl This fixes the final issues with the target related to unwinding by disabling removal of frame pointers.
☀️ Test successful - status-appveyor, status-travis |
This fixes the final issues with the target related to unwinding by disabling
removal of frame pointers.