|
Re: Ctype Module not Found in QNX Virtual Machine with x_86 Architecture
|
01/16/2023 9:35 AM
post122121
|
Re: Ctype Module not Found in QNX Virtual Machine with x_86 Architecture
I suspect you are missing libffi.so.6
You can either just copy it to /system/lib on your VM or add:
lib/libffi.so.6=usr/lib/libffi.so.6
to the file local/snippets/system_files.custom so it'll be there next time you build it.
The way to work out what it's missing is to set the environment variable DL_DEBUG to libs when you run python. This will
show all the shared objects that are being loaded, or in this case not being loaded.
|
|
|