fix missing posix message queue support in python3-posix-ipc package#917
Draft
AleksandrVin wants to merge 1 commit intoopenembedded:masterfrom
Draft
fix missing posix message queue support in python3-posix-ipc package#917AleksandrVin wants to merge 1 commit intoopenembedded:masterfrom
AleksandrVin wants to merge 1 commit intoopenembedded:masterfrom
Conversation
kraj
reviewed
Jan 11, 2025
| inherit setuptools3 pypi | ||
|
|
||
| # Ensure posix message queue support in python package for prober.py script | ||
| DEPENDS += "glibc" |
Contributor
There was a problem hiding this comment.
glibc is default dependency added to every recipe if the distro you are building is using TCLIBC = "glibc" so I wonder if you are using TCLIBC = "musl" ?
Author
There was a problem hiding this comment.
hmm, yes. it's not a solution
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
issue
There was a problem with this package, it compiled normally, but without message queue support, even though it was enabled due to the latest kernel usage.
Without DEPENDS += "glibc" probber script tends to provide wrong results, disabling message queue support.
This hack fixes it. I'm new to open embedded, so please tell me if this approach is not the optimal one or not correct.