You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While using os.popen() from unix-ffi libraries on FreeBSD 14.1-RELEASE-p5 amd64, I encountered this error:
... File "os/__init__.py", line 32, in <module> File "ffilib.py", line 43, in libc File "ffilib.py", line 39, in open File "ffilib.py", line 33, in openOSError: [Errno 2] ENOENT
On further investigation, I found that libc major version has been upgraded to 7, and ffilib.py is only looking for versions up to 6.
Only making a note here since the readme for unix-ffi says: "This directory is unmaintained." and I would like to have a reference come up in searches when someone encounters the error.
The text was updated successfully, but these errors were encountered:
While using
os.popen()
from unix-ffi libraries on FreeBSD 14.1-RELEASE-p5 amd64, I encountered this error:On further investigation, I found that libc major version has been upgraded to 7, and ffilib.py is only looking for versions up to 6.
micropython-lib/unix-ffi/ffilib/ffilib.py
Line 42 in e4cf095
Changing the 6 to 7 fixed the issue.
Only making a note here since the readme for unix-ffi says: "This directory is unmaintained." and I would like to have a reference come up in searches when someone encounters the error.
The text was updated successfully, but these errors were encountered: