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.
ld —verbose
1 parent f8dd24c commit 0cc67bfCopy full SHA for 0cc67bf
libhdf5-sys/build.rs
@@ -113,7 +113,7 @@ fn validate_runtime_version(config: &Config) {
113
let mut link_paths = config.link_paths.clone();
114
if cfg!(all(unix, not(target_os = "macos"))) {
115
if let Some(ldv) = run_command("ld", &["--verbose"]) {
116
- let re = Regex::new(r#"SEARCH_DIR\("=(?P<path>[^"]+)"\)"#).unwrap();
+ let re = Regex::new(r#"SEARCH_DIR\("=?(?P<path>[^"]+)"\)"#).unwrap();
117
println!("Adding extra link paths (ld)...");
118
for caps in re.captures_iter(&ldv) {
119
let path = &caps["path"];
0 commit comments