-
Notifications
You must be signed in to change notification settings - Fork 869
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
musl compatibility #5219
musl compatibility #5219
Conversation
Cousin PR merged! |
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.
the git reference to portduino must be updated to commit a7d95ec808ae5154cfb49ef293b330083c8f684d to include the Cousin PR here.
meshtastic/platform-native#5 done 👍 Once the |
meshtastic/firmware#5219 was merged, no need to use a fork
* musl compat * trunk fmt * Update platform-native, including musl fix meshtastic/platform-native#5 --------- Co-authored-by: Ben Meadors <[email protected]>
Existing meshtasticd code currently fails to compile with musl.
This PR seeks to resolve compilation errors for musl so that it can be used with buildroot-meshtastic.
Including
#include <sys/types.h>
resolves issues caused by musl not includinguint
andulong
type definitions by default.Cousin PR: meshtastic/framework-portduino#36