|
infix
A JIT-Powered FFI Library for C
|
Cookbook Chapter 6: Handling Library Dependencies. More...
Functions | |
| int | main () |
Variables | |
| const char * | LIB_A_NAME = "./libA.so" |
Cookbook Chapter 6: Handling Library Dependencies.
This example demonstrates that infix does not require any special handling when loading a shared library that itself depends on other shared libraries. The operating system's dynamic linker automatically handles loading and linking all necessary dependencies.
This example loads libA, which internally calls a function from libB.
| int main | ( | void | ) |
| const char* LIB_A_NAME = "./libA.so" |