-
Notifications
You must be signed in to change notification settings - Fork 734
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
serial: Fix empty package and use shared lib instead of static lib. #809
Conversation
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.
Can you submit this patch upstream ? and also set Upstream-Status
in the patch accordingly.
@kraj Thanks for your reminder. I have appended Upstream-Status label. I noticed that the maintainer of the |
Sorry. I have not test Can you give me some hint for fix I noticed that we have https://github.com/wjwwood/serial/blob/main/tests/CMakeLists.txt |
Enable ptest via adding it to
then try building it again. |
fixed with 224eb26 |
Thanks! |
The older recipe of serial built a static lib
libserial.a
.Which was contained in
FILES_${PN}-dev
andFILES_${PN}
is empty.This will make bitbake unhapply and raise
Nothing provides serial needed by other-recipe
problem.To fix it we need add CMake
set_target_properties
function.see also: