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
AIX build breaks because of the recent commit #109914 gcc -pthread -maix64 -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden -I./Include/internal -I./Include/internal/mimalloc -I. -I./Include -DPy_BUILD_CORE -o Objects/obmalloc.o Objects/obmalloc.c In file included from Objects/mimalloc/prim/prim.c:22, from Objects/mimalloc/static.c:37, from Objects/obmalloc.c:15: Objects/mimalloc/prim/unix/prim.c:55:12: fatal error: sys/syscall.h: No such file or directory 55 | #include <sys/syscall.h> | ^~~~~~~~~~~~~~~ compilation terminated.
AIX don't have syscall.h.
CPython main branch
Other
The text was updated successfully, but these errors were encountered:
pythongh-111544: Fix mimalloc build on AIX
4a8156e
gh-111544: Fix mimalloc build on AIX (#111593)
794dff2
closed via #111593. Thanks for the support.
Sorry, something went wrong.
pythongh-111544: Fix mimalloc build on AIX (python#111593)
4e55d31
3dead51
9ceb761
No branches or pull requests
Bug report
Bug description:
AIX build breaks because of the recent commit #109914
gcc -pthread -maix64 -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden -I./Include/internal -I./Include/internal/mimalloc -I. -I./Include -DPy_BUILD_CORE -o Objects/obmalloc.o Objects/obmalloc.c
In file included from Objects/mimalloc/prim/prim.c:22,
from Objects/mimalloc/static.c:37,
from Objects/obmalloc.c:15:
Objects/mimalloc/prim/unix/prim.c:55:12: fatal error: sys/syscall.h: No such file or directory
55 | #include <sys/syscall.h>
| ^~~~~~~~~~~~~~~
compilation terminated.
AIX don't have syscall.h.
CPython versions tested on:
CPython main branch
Operating systems tested on:
Other
Linked PRs
The text was updated successfully, but these errors were encountered: