Skip to content

Commit a8fa2cf

Browse files
committed
rustc: use -Xlinker when specifying an rpath with ',' in it
The `-Wl` option splits its parameters on commas, so if rustc specifies `-Wl,-rpath,<path>` when `<path>` contains commas, the path gets split up and the linker gets a partial path and spurious extra parameters. Gcc/clang support the more verbose `-Xlinker` option to pass options to the linker directly, so use it for comma-containing paths. Fixes rust issue #38795.
1 parent 8f62c29 commit a8fa2cf

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

src/librustc_trans/back/rpath.rs

+22-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,13 @@ pub fn get_rpath_flags(config: &mut RPathConfig) -> Vec<String> {
5151
fn rpaths_to_flags(rpaths: &[String]) -> Vec<String> {
5252
let mut ret = Vec::new();
5353
for rpath in rpaths {
54-
ret.push(format!("-Wl,-rpath,{}", &(*rpath)));
54+
if rpath.contains(',') {
55+
ret.push("-Wl,-rpath".into());
56+
ret.push("-Xlinker".into());
57+
ret.push(rpath.clone());
58+
} else {
59+
ret.push(format!("-Wl,-rpath,{}", &(*rpath)));
60+
}
5561
}
5662
return ret;
5763
}
@@ -258,4 +264,19 @@ mod tests {
258264
assert_eq!(res, "$ORIGIN/../lib");
259265
}
260266
}
267+
268+
#[test]
269+
fn test_xlinker() {
270+
let args = rpaths_to_flags(&[
271+
"a/normal/path".to_string(),
272+
"a,comma,path".to_string()
273+
]);
274+
275+
assert_eq!(args, vec![
276+
"-Wl,-rpath,a/normal/path".to_string(),
277+
"-Wl,-rpath".to_string(),
278+
"-Xlinker".to_string(),
279+
"a,comma,path".to_string()
280+
]);
281+
}
261282
}

0 commit comments

Comments
 (0)