-
Notifications
You must be signed in to change notification settings - Fork 164
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
Different strerror_r
function usage
#231
Comments
Havoc depends on |
I guess if change the order of |
Thank you for finding the problem. |
HELP NEEDED I think this is a problem based on difference between arch and compilers. And that will be a little bit hard on testing whether fix works. So I need more details about such Marco and flags. And then create a new fix in PR. What do u think about that? |
Bad news is it works well when i clone project directly(not as submodule). It compiled and works well. |
Fixed by #233. |
When i was building Havoc Framework which imports toml11 on my m1 mac, I got error like
error stack
Then I found this project and found different process here.
but my macos c header looks like
current fix
I changed the code like following to patch a little but it's not good I think.
It looks like to following the
(defined(_POSIX_C_SOURCE) && _POSIX_C_SOURCE >= 200112L) || (defined(_XOPEN_SOURCE) && _XOPEN_SOURCE >= 600)
condition and compile the code.Is it a bug or need more classification in macro?
The text was updated successfully, but these errors were encountered: