-
Notifications
You must be signed in to change notification settings - Fork 54
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
alpine musl build error #143
Comments
any tips to fix this ? |
@calvin2021y |
alpine and musl do support backtrace and unwind, but some header is diff from glibc. |
@calvin2021y |
Thanks for the solution. alpine is fixed for x86 and aarch64. macOS show this error: jungle/src/backtrace.h:330:24: error: use of undeclared identifier 'abi'
char *cc = abi::__cxa_demangle(func_mangled.c_str(), 0, 0, &status);
maybe need change to this: #include <cxxabi.h>
#ifndef LOGGER_NO_BACKTRACE
#include <execinfo.h>
#endif |
Now it should work on Mac with the flag, please check it again. |
Thanks for the update. some how I can not apply https://github.com/eBay/Jungle/pull/145.patch check from the code it should be fixed. I will update and test late after you merge. |
one question about it only can append data into store with a bigger SN. (can be discontinuous) it can not delete by SN number, but can truncation by SN number ? I also want to know if there will be supported with IO_uring async DISK io instead thread. |
Right, it is not possible to delete a sequence number in the middle; you can only truncate it. And currently there is no support for AsyncIO. |
The text was updated successfully, but these errors were encountered: