I need to call C code (from xilinx IP model) in python 3. I made few test caling function from .so with ctypes library and it was successfull. But here I have an issue: the usefull library require 2 others .so files, I have no issue to build an exe but can't find any way of importing my final library in python.
Thanks for your help
Consulting the forum i just found the solution: -when building .so , unresolved references are usual, dependencies are indicated when building the exe file -then to use 2 (or more ) dependant libraries .so in python a simple way to achieve it is: