refer to this post:
https://users.rust-lang.org/t/strip-extern-function-symbols/122508?u=leyloe
The Rust Programming Language Forum
So I made a C script that defines a function for lets say it prints "hello" called hello() And I link that C source file to my rust program using cc finally i invoke the function after placing extern "C" somewhere in the script the problem is, is that, no matter what rustc flag, cargo parameter, strip all, option i pass, i can't seem to get r...