-
Notifications
You must be signed in to change notification settings - Fork 964
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
uClibc compatibility #5270
uClibc compatibility #5270
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
#include "PhoneAPI.h" | ||
#include "Stream.h" | ||
#include "concurrency/OSThread.h" | ||
#include <cstdarg> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
|
||
// A To/FromRadio packet + our 32 bit header | ||
#define MAX_STREAM_BUF_SIZE (MAX_TO_FROM_RADIO_SIZE + sizeof(uint32_t)) | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,8 @@ | |
extends = portduino_base | ||
; The pkg-config commands below optionally add link flags. | ||
; the || : is just a "or run the null command" to avoid returning an error code | ||
build_flags = ${portduino_base.build_flags} -O0 -I variants/portduino -I /usr/include | ||
build_flags = ${portduino_base.build_flags} -O0 -I variants/portduino | ||
-I /usr/include | ||
Comment on lines
+5
to
+6
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I patch (remove) this value in |
||
!pkg-config --libs libulfius --silence-errors || : | ||
!pkg-config --libs openssl --silence-errors || : | ||
board = cross_platform | ||
|
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.
Allows
std::filesystem
to function onuClibc