-
Notifications
You must be signed in to change notification settings - Fork 24
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
Cannot find FANN source libs in multiarch #25
Comments
But this is not a correct solution as the correct ARCH to use depends on the architecture of the python interpreter. I'd tend to remove |
Another problem with this is that it wont honor |
This took me longer than it should have to debug. I spent quite a bit of time trying to understand how the shared file objects were not on the LD_LIBRARY_PATH; turns out they were, and I noticed that My workaround was to symlink the shared file objects to one of the listed directories in I agree with @randomstuff to remove that function and just attempt to compile. |
When trying to install this library I get:
The reason is that on multiarch systems (at least Debian-based ones) libdoublefann is located in
/usr/lib/$ARCH/libdoublefann.so
(eg./usr/lib/x86_64-linux-gnu/libdoublefann.so
)::Patching the setup code like this fixes the issue:
The text was updated successfully, but these errors were encountered: