We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
To build on Ubuntu-18.04 I need to add this:
-------------------- bootstrap/stage0/runtime/AK/Format.cpp -------------------- index 43b125cb..58ac662a 100644 @@ -34,6 +34,11 @@ # include <AK/StringFloatingPointConversions.h> #endif +#if __GLIBC__ == 2 && __GLIBC_MINOR__ < 30 +#include <sys/syscall.h> +#define gettid() syscall(SYS_gettid) +#endif + namespace AK { namespace {
The text was updated successfully, but these errors were encountered:
Jakt's "copy" of AK is strictly downstream from Serenity's, please make an issue/PR there instead.
Sorry, something went wrong.
Thank you for reply ! Done here SerenityOS/serenity#25527
No branches or pull requests
To build on Ubuntu-18.04 I need to add this:
The text was updated successfully, but these errors were encountered: