-
Notifications
You must be signed in to change notification settings - Fork 711
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
uutils coreutils 0.0.18 #670
uutils coreutils 0.0.18 #670
Conversation
Commit 93d691d did not add the crates checksum (even though the commit message says it did), and the crates fetcher is now failing with "No checksum specified". Signed-off-by: Etienne Cordonnier <ecordonnier@snap.com>
This comment does not make sense any more, now that the auto-generated recipe has been removed. Signed-off-by: Etienne Cordonnier <ecordonnier@snap.com>
Signed-off-by: Etienne Cordonnier <ecordonnier@snap.com>
fails to build on musl/qemuarm64
|
I investigated the issue, and the root-cause is that https://github.com/uutils/coreutils/blob/90609044ebc8a6802bb2aef05c57600b4de5af1e/src/uucore/src/lib/features.rs#L42 disables utmpx when building uucore for the musl target, as a work-around for uutils/coreutils#1361 Is there a way to disable the build of uutils-coreutils for musl in yocto, so that the PR is unblocked? Or is the implementation of uutils-coreutils for musl a pre-requisite? |
its fine to disable it for musl. Perhaps do
although it will be good to inform upstream rust libc about this problem and see if it can be fixed and tracked. |
musl is not supported because the libc crate does not support functions like "endutxent" at the moment, so src/uucore/src/lib/features.rs disables utmpx when targetting musl. Signed-off-by: Etienne Cordonnier <ecordonnier@snap.com>
I added the line you recommended to disable musl. I also created a ticket at libc to track the issue: rust-lang/libc#3190 Is there some CI which tries to build all recipes with musl, and will fail because of the following error when trying to build with musl?
|
applied as of 6b197f0 |
No description provided.