strike-ntzachar

Results 5 comments of strike-ntzachar

To further clarify, I am loading the shared library from a separate c++ codebase and dl-loading symbols from the shared library. So, my issue is that every time the cxx...

The c++ generated non-headers are no help, as the are not hot-loading (dlsym) my exported functions. It will not help me to directly interface with them. I have an absolute...

Ok, how to do that? How can i link the generated non headers to my rust dynlib?

managed to get the cpp generated files linked. Changed my build.rs script: ```rust use std::env; use std::path::PathBuf; fn main() { let out_dir = env::var("OUT_DIR").unwrap(); let mut generated_path = PathBuf::from(out_dir); generated_path.push("cxxbridge");...

Can you tell where the error is generated exactly?