Browse Source

Merge pull request #93 from nipunn1313/weight

Add weight to the gcc parallel tasks
vs2017
Alex Crichton 8 years ago
committed by GitHub
parent
commit
38afecda14
  1. 2
      src/lib.rs

2
src/lib.rs

@ -367,7 +367,7 @@ impl Config {
} }
drop(rayon::initialize(cfg)); drop(rayon::initialize(cfg));
objs.par_iter().for_each(|&(ref src, ref dst)| { objs.par_iter().weight_max().for_each(|&(ref src, ref dst)| {
self.compile_object(src, dst) self.compile_object(src, dst)
}) })
} }

Loading…
Cancel
Save