We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
rpath
build.rs
https://github.com/rust-lang/cargo/issues/5077`
1 parent eea221e commit ca23bd6Copy full SHA for ca23bd6
mega/src/build.rs
@@ -4,5 +4,9 @@
4
//!
5
6
fn main() -> shadow_rs::SdResult<()> {
7
+ #[cfg(target_os = "linux")]
8
+ println!("cargo:rustc-link-arg=-Wl,-rpath,$ORIGIN");
9
+ #[cfg(target_os = "macos")]
10
+ println!("cargo:rustc-link-arg=-Wl,-rpath,@executable_path");
11
shadow_rs::new()
12
}
0 commit comments