-
Notifications
You must be signed in to change notification settings - Fork 57
fix portability issue #41
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
Conversation
xms0g
commented
Feb 3, 2026
- added missing headers.
- m128i_u32 is MSVC specific so compiling fails on clang. Exchanged with _mm_extract_epi32.
…back to prevent extra-copied object
…SE/AVX intrinsics
| #include <unistd.h> | ||
| #endif | ||
|
|
||
| #include "libdwarf_private.h" |
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.
Why we need this include ?
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.
const int siblingResult = dwarf_siblingof_b(dbg, current, TRUE, &sibling, &error);
TRUE is not recognizable here. Fails on MacOS, probably on Linux. where does TRUE macro come from?
|
tested under linux mint -> ok |