Load the .o library at path which implements functions with func_names. Unlike the generic load_module the result will remain as a static_library and will not be relinked on-the-fly into a .so library.
(path, func_names)
| 468 | |
| 469 | |
| 470 | def load_static_library(path, func_names): |
| 471 | """Load the .o library at path which implements functions with func_names. |
| 472 | Unlike the generic load_module the result will remain as a static_library |
| 473 | and will not be relinked on-the-fly into a .so library.""" |
| 474 | return _ffi_api.ModuleLoadStaticLibrary(path, func_names) |
| 475 | |
| 476 | |
| 477 | def enabled(target): |
no outgoing calls
no test coverage detected
searching dependent graphs…