|
1 |
| -use std::collections::HashMap; |
| 1 | +use std::collections::{HashMap, HashSet}; |
2 | 2 | use std::env;
|
3 | 3 | use std::ffi::{OsStr, OsString};
|
4 | 4 | use std::fs;
|
@@ -81,7 +81,6 @@ pub fn compile_targets<'a, 'cfg: 'a>(ws: &Workspace<'cfg>,
|
81 | 81 | })
|
82 | 82 | }).collect::<Vec<_>>();
|
83 | 83 |
|
84 |
| - let root = try!(ws.current()); |
85 | 84 | let mut cx = try!(Context::new(ws, resolve, packages, config,
|
86 | 85 | build_config, profiles));
|
87 | 86 |
|
@@ -142,19 +141,19 @@ pub fn compile_targets<'a, 'cfg: 'a>(ws: &Workspace<'cfg>,
|
142 | 141 | cx.compilation.libraries.insert(pkgid.clone(), v);
|
143 | 142 | }
|
144 | 143 | }
|
145 |
| - } |
146 | 144 |
|
147 |
| - let root_pkg = root.package_id(); |
148 |
| - if let Some(feats) = cx.resolve.features(root_pkg) { |
149 |
| - cx.compilation.cfgs.extend(feats.iter().map(|feat| { |
150 |
| - format!("feature=\"{}\"", feat) |
151 |
| - })); |
| 145 | + if let Some(feats) = cx.resolve.features(&unit.pkg.package_id()) { |
| 146 | + cx.compilation.cfgs.entry(unit.pkg.package_id().clone()) |
| 147 | + .or_insert(HashSet::new()) |
| 148 | + .extend(feats.iter().map(|feat| format!("feature=\"{}\"", feat))); |
| 149 | + } |
152 | 150 | }
|
153 | 151 |
|
154 | 152 | for (&(ref pkg, _), output) in cx.build_state.outputs.lock().unwrap().iter() {
|
155 |
| - if pkg == root_pkg { |
156 |
| - cx.compilation.cfgs.extend(output.cfgs.iter().cloned()); |
157 |
| - } |
| 153 | + cx.compilation.cfgs.entry(pkg.clone()) |
| 154 | + .or_insert(HashSet::new()) |
| 155 | + .extend(output.cfgs.iter().cloned()); |
| 156 | + |
158 | 157 | for dir in output.library_paths.iter() {
|
159 | 158 | cx.compilation.native_dirs.insert(dir.clone());
|
160 | 159 | }
|
|
0 commit comments