Hi Alain,
Yes, we solved in the past, but we think it is not a appropriate way。
Then we find you can follow this way to load the library, then it should works:
#!/usr/bin/env python
from ctypes import *
#EFWlib = cdll.LoadLibrary('./libEFWFilter.so')
EFWlib = CDLL('libudev.so', mode = RTLD_GLOBAL)
EFWlib = CDLL('./libEFWFilter.so', mode = RTLD_GLOBAL)
EFWNum = EFWlib.EFWGetNum()
print "Detect %d efw exist!" % EFWNum
This is our old demo, it also could works. I think you can try it.
Thanks
Chad