summaryrefslogtreecommitdiffstats
path: root/src/build.h
Commit message (Collapse)AuthorAgeFilesLines
* Implement restat rulesPeter Collingbourne2011-10-241-0/+4
| | | | | | | | | | | | | | | | | A restat rule is a rule which is capable of pruning the build tree depending on the timestamps of its outputs before and after a build. After a restat rule is rebuilt, Ninja will re-stat each output file to obtain its current timestamp. If the timestamp is unchanged from when Ninja initially stat'ed the file before starting the build, Ninja will mark that output file as clean, and recursively for each reverse dependency of the output file, recompute its dirty status. Ninja then stores the most recent timestamp of any input file in the build log entry associated with the output file. This timestamp will be treated by future invocations of Ninja as the output file's modification time instead of the output file's actual modification time for the purpose of deciding whether it is dirty (but not whether its reverse dependencies are dirty).
* Split Node::dirty_ into two flags: Node::dirty_ and Edge::outputs_ready_Peter Collingbourne2011-10-181-2/+12
| | | | | dirty_ is intended to remain static during the build (unless a restat occurs), while outputs_ready_ reflects the dynamic state of the build.
* fix redundant manifest rebuildEvan Martin2011-09-081-0/+9
| | | | | | | Don't rebuild the manifest when it's already up to date. The underlying problem was that Builder::Build has a confusing API; split the API so it's more clear for callers what the return values mean.
* simplify CommandRunner, simplifying users tooEvan Martin2011-05-171-4/+2
| | | | | After much staring at this I think I found the more clear way to express what it's doing.
* refactor status printing into BuildStatusEvan Martin2011-05-141-2/+2
| | | | | | Centralizing printing allows being more careful about what is output. 1) Always include the [2/15] prefix on commands. 2) Make the header command match the error output command.
* add support for ignoring failures of some subtasksEvan Martin2011-05-091-1/+4
|
* use refactored function to support implicit "all" targetEvan Martin2011-05-011-0/+1
|
* add doxygen-compatibile comments to most classesEvan Martin2011-04-291-16/+18
|
* add copyrightsEvan Martin2011-02-061-0/+14
|
* fancier outputEvan Martin2011-02-051-2/+7
|
* parallelism flag, guess based on cpuinfoEvan Martin2011-02-011-1/+2
|
* catch ourselves when we're stuckEvan Martin2011-01-081-1/+3
|
* state holds build log, not configEvan Martin2011-01-071-2/+1
|
* move buildlog to main driverEvan Martin2010-12-261-1/+2
|
* hook up build logEvan Martin2010-12-261-0/+1
|
* rename BuildStatusLogEvan Martin2010-12-231-1/+1
|
* fix plan edge count computationEvan Martin2010-12-201-1/+1
|
* verbosity tristateEvan Martin2010-12-141-3/+8
|
* use separate config objectEvan Martin2010-12-131-4/+8
|
* dry run flagEvan Martin2010-12-131-0/+1
|
* verbose modeEvan Martin2010-12-071-0/+2
|
* factor out build loggingEvan Martin2010-12-061-0/+1
|
* move src into subdirEvan Martin2010-12-051-0/+75