Skip to content

Commit

Permalink
removing parallel build
Browse files Browse the repository at this point in the history
  • Loading branch information
tanneberger committed Nov 12, 2023
1 parent e14bcc6 commit d174ac6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backends/lfc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ impl LFC {
compile_target_code: bool,
) {
results.keep_going(options.keep_going);
results.par_map(|app| LFC::do_lfc_codegen(app, options, compile_target_code));
results.map(|app| LFC::do_lfc_codegen(app, options, compile_target_code));
}

/// Do codegen for a single app.
Expand Down

0 comments on commit d174ac6

Please sign in to comment.