We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dabb6ce commit 842707bCopy full SHA for 842707b
builder/src/arch/musl.rs
@@ -64,7 +64,7 @@ pub fn fix_soname(lib_path: &str) {
64
let mut patch_soname = Command::new("patchelf")
65
.arg("--set-soname")
66
.arg(PROF_DYNAMIC_LIB)
67
- .arg(lib_path)
+ .arg(lib_path.to_owned() + "/" + PROF_DYNAMIC_LIB)
68
.spawn()
69
.expect("failed to spawn patchelf");
70
0 commit comments