We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The following warning appears while launching x-tile:
libc.prctl not available, the process name will be python and not x-tile
i tried by manually issuing commands in python3, here is what i got:
>>> import ctypes.util >>> ctypes.util.find_library("libc") Traceback (most recent call last): [...] FileNotFoundError: [Errno 2] No such file or directory: b'liblibc.a'
also tried this with no success: libc = ctypes.cdll.LoadLibrary(ctypes.util.find_library("libc.so.6"))
libc = ctypes.cdll.LoadLibrary(ctypes.util.find_library("libc.so.6"))
this is the line that fixes it and works properly: libc = ctypes.cdll.LoadLibrary(ctypes.util.find_library("c"))
libc = ctypes.cdll.LoadLibrary(ctypes.util.find_library("c"))
can the code be modified to the line above? see similar issue: python/cpython#86746
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following warning appears while launching x-tile:
libc.prctl not available, the process name will be python and not x-tile
i tried by manually issuing commands in python3, here is what i got:
also tried this with no success:
libc = ctypes.cdll.LoadLibrary(ctypes.util.find_library("libc.so.6"))
this is the line that fixes it and works properly:
libc = ctypes.cdll.LoadLibrary(ctypes.util.find_library("c"))
can the code be modified to the line above?
see similar issue: python/cpython#86746
The text was updated successfully, but these errors were encountered: