-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Followup to #1649. #1985
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
Followup to #1649. #1985
Conversation
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @JohnTitor (or someone else) soon. If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes. Please see the contribution instructions for more information. |
IIUC these items are available across all the musl targets? If so, I now wonder we could place them in |
I guess. But I don't even understand why |
See #423. Some are changed, e.g., cargo now has the |
Seems to be that struct nlmsghdr {
__u32 nlmsg_len; /* Length of message including header */
__u16 nlmsg_type; /* Message content */
__u16 nlmsg_flags; /* Additional flags */
__u32 nlmsg_seq; /* Sequence number */
__u32 nlmsg_pid; /* Sending process port ID */
}; meaning it should be identical on all archs. I moved it to |
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!
@bors r+ |
📌 Commit 53a8be9 has been approved by |
Followup to #1649. When adding `nlmsghdr` for `musl` targets the `aarch64` arch was singled out, not getting the definition. This remedies the problem so that `if-watch` compiles on `aarch64-unknown-linux-musl`. - [0] https://github.com/dvc94ch/if-watch/issues/3
💔 Test failed - checks-actions |
Spurious, @bors retry |
☀️ Test successful - checks-actions, checks-cirrus-freebsd-11, checks-cirrus-freebsd-12, checks-cirrus-freebsd-13 |
Looks like there aren't any open PR's and that there have been quite a few commits since the last release. Is it maybe possible to make a new release? |
As mentioned in the contributing guide (https://github.com/rust-lang/libc/blob/master/CONTRIBUTING.md#releasing-your-change-to-cratesio), you can send a PR to make a release anytime! This time I opened #1988. |
Thanks, hadn't seen that |
When adding
nlmsghdr
formusl
targets theaarch64
arch was singled out, not getting the definition. This remedies the problem so thatif-watch
compiles onaarch64-unknown-linux-musl
.