Linking Rust application with a dynamic library not in the runtime linker search path
Here’s a Minimal, Reproducible Example that exhibits the same problem that you experienced. I created a C library exporting a simple addition function. I also created a Cargo project to use this function. dynlink/ ├── executable │ ├── build.rs │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ └── main.rs └── library ├── … Read more