-
Notifications
You must be signed in to change notification settings - Fork 44
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
cffi.FFI().dlopen gives error 0x7e on Windows #64
Comments
I was able to get this working by adding the directory containing the DLL to the
I would still consider this a bug since it shouldn't be necessary to manually add it to the PATH first. It's not for ctypes. |
It probably didn't change recently, but can you give us your Python version for reference? (for ctypes) |
$ python
Python 3.12.2 | packaged by conda-forge | (main, Feb 16 2024, 20:42:31) [MSC v.1937 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import ctypes
>>> ctypes.__version__
'1.1.0'
>>> import cffi
>>> cffi.__version__
'1.16.0' |
I think that ctypes passes some flags to I guess we should pass by default the same flags as ctypes does, on Windows. We could also support giving explicit flags: |
Does this help? #65 |
That fixes it! After installing your fork of cffi, I don't need to use the ctypes hack anymore. |
OK! Added some documentation and merging. |
Opening the DLL for the R programming language fails with CFFI on Windows on my machine:
But opening the same DLL with ctypes first "magically" makes it open with CFFI as well (note:
import cffi
is not enough, you have to callctypes.CDLL(dll)
as well):I am using the base environment of Miniforge (https://github.com/conda-forge/miniforge) for this, but I get the same
0x7e
error on my system Python installation. Although there,ctypes.CDLL()
also gives an error:Using
ctypes.util.find_library(dll)
doesn't help:The text was updated successfully, but these errors were encountered: