for path in output.library_paths.iter() {
rustc.arg("-L").arg(path);
}
+
if key.0 == current_id {
for cfg in &output.cfgs {
rustc.arg("--cfg").arg(cfg);
rustc.arg("-l").arg(name);
}
}
- if link_type.is_some() {
- for (lt, arg) in &output.linker_args {
- if lt.is_none() || *lt == link_type {
- rustc.arg("-C").arg(format!("link-arg={}", arg));
- }
+ }
+
+ if link_type.is_some() {
+ for (lt, arg) in &output.linker_args {
+ if lt.is_none() || *lt == link_type {
+ rustc.arg("-C").arg(format!("link-arg={}", arg));
}
}
}