From: Anas Nashif Date: Mon, 5 Nov 2012 19:22:40 +0000 (-0800) Subject: parallel build X-Git-Tag: submit/tizen/20130530.111644~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=28ebed0ccf1ab630eea514d44e8ff18987b235ea;p=platform%2Fupstream%2Fmake.git parallel build --- diff --git a/remake.c b/remake.c index 27d2550..7fe5259 100644 --- a/remake.c +++ b/remake.c @@ -301,7 +301,7 @@ update_file (struct file *file, unsigned int depth) /* Check for the case where a target has been tried and failed but the diagnostics hasn't been issued. If we need the diagnostics then we will have to continue. */ - if (!(f->updated && f->update_status > 0 && !f->dontcare && f->no_diag)) + if (!(f->updated && f->update_status > 0 && !f->dontcare && f->no_diag) && f->command_state!=cs_not_started ) { DBF (DB_VERBOSE, _("Pruning file `%s'.\n")); return f->command_state == cs_finished ? f->update_status : 0; @@ -614,6 +614,12 @@ update_file_1 (struct file *file, unsigned int depth) d->file->dontcare = file->dontcare; } + /* We may have already encountered this file earlier in the same + * pass before we knew we'd be updating this target. In that + * case calling update_file now would result in the file being + * inappropriately pruned so we toggle the considered bit back + * off first. */ + d->file->considered = !considered; dep_status |= update_file (d->file, depth);