Hello everyone, I have this stupid question that has a high chance of receive a NO as answer.
First the background.
Recently I have testing the python feature of importing code written in C and compiled into dynamic libraries .so files on my PC, In my tests I could notice that I can import files with only the read and write permissions, so base on that I conclude that I don't need the execution permission in that kind of file to import them to python.
All of those tests where made approaching
import ctypes
my_c_library = ctypes.cdll.LoadLibrary("/path/to/library")
my_c_library.my_c_function(arg_1, arg_2)
Now that I have access to a Mac I was trying to approach the Xcode tools to compile a dynamic library and import it to Pythonista, the problem is that it is extremely hard to setup the environment for the compilation to iOS, I mean, I could compile to arm64 but looks like iOS has other libraries that I have no access to (or at least I don't know where to find them)
If anyone have a solution or have an alternative way to approach something similar I really will appreciate it