-
Notifications
You must be signed in to change notification settings - Fork 87
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
Fix AlphaMap definition in cdatrie.pxd #99
base: master
Are you sure you want to change the base?
Fix AlphaMap definition in cdatrie.pxd #99
Conversation
Fixes failure to compile on GCC with `-Werror=incompatible-pointer-types`.
This fixes the build with GCC 14 for me. |
Maintainers, could you please review and merge? Or let us know how to proceed? Do you want to transfer the ownership of datrie? |
Good evening! |
It looks like you are passing |
ok thanks! I followed your advice and I compiled |
It looks like you are probably compiling a copy of |
Thanks! You were right! then, I updated and compiled it! That error has disappeared! However I have got a lot of undefined reference; the error file is attached. Many thanks for helping me. |
Most of those errors indicate you’re not linking the CPython libraries. The first error that’s trying to find a All of the following work fine for me in a git checkout of this branch:
|
Thnk you very much for the help! In the end, I tried a workaround from here : #101:
|
Fixes failure to compile on GCC with
-Werror=incompatible-pointer-types
.