-
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
Remove references for L4re that are not defined. #103966
Conversation
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @m-ou-se (or someone else) soon. Please see the contribution instructions for more information. |
Hey! It looks like you've submitted a new PR for the library teams! If this PR contains changes to any Examples of
|
@@ -35,6 +35,7 @@ | |||
//! | |||
//! Once stack has been unwound down to the handler frame level, unwinding stops | |||
//! and the last personality routine transfers control to the catch block. | |||
#![cfg(not(target_os = "l4re"))] |
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 should probably go in the cfg_if
in library/std/src/personality.rs
instead.
☔ The latest upstream changes (presumably #107105) made this pull request unmergeable. Please resolve the merge conflicts. |
@ManuelvOK any updates on this? |
Closing this as inactive |
fix: get the l4re target working again This is based on work from rust-lang#103966, addressing the review comment by `@m-ou-se` at the time and "fixing" the (probably newly) missing read_buf.
fix: get the l4re target working again This is based on work from rust-lang/rust#103966, addressing the review comment by `@m-ou-se` at the time and "fixing" the (probably newly) missing read_buf.
fix: get the l4re target working again This is based on work from rust-lang/rust#103966, addressing the review comment by `@m-ou-se` at the time and "fixing" the (probably newly) missing read_buf.
A couple of signals are not defined for L4re. The same applies for most libunwind calls. This PR removes the references for l4re.