-
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
32-bit CFFI extension build failure on Windows 10 64-bit #30
Comments
@FeraruSilviuMarian Can you please post the full error output? It looks like you've cut out the most important part. |
|
Are you on a 32-bit or 64-bit version of Windows 10? |
64-bit operating system, x64-based processor my python version is 32 bits, could that be the issue ? |
Yes, I think that might be the issue. I can see a strange blend of 32-bit and 64-bit stuff in the output you posted. The libraries pulled by Conan are 64-bit (to match your system), but then the extension is being compiled in 32-bit (to match your Python), and then they can't be linked. |
You can try the following:
|
I've installed python 3.9.7 64 bit (AMD64) and I was able to install webp after pip installing wheel and some other modules that I had before, thank you for your help. |
Code has been added to detect when 32-bit Python is installed on an x64 host and configure Conan accordingly: #31 |
Originally posted by @FeraruSilviuMarian in #20 (comment)
The text was updated successfully, but these errors were encountered: