| Commit message (Expand) | Author | Age | Files | Lines |
* | mark this 1.6.0.git | Nico Weber | 2015-06-29 | 1 | -1/+1 |
|
|
* | Revert "Bootstrap out of source" | Nico Weber | 2015-06-22 | 1 | -1/+1 |
|
|
* | Merge pull request #971 from stinb/bootstrap-out-of-source | Nico Weber | 2015-06-18 | 1 | -1/+1 |
|\ |
|
| * | Search for generated headers relative to build dir. | Jason Haslam | 2015-05-26 | 1 | -1/+1 |
|
|
* | | Merge pull request #970 from nico/explain | Nico Weber | 2015-06-18 | 1 | -1/+7 |
|\ \ |
|
| * | | Add a missing EXPLAIN() call. | Nico Weber | 2015-05-15 | 1 | -1/+7 |
| |/ |
|
* | | Add missing member initializer in Edge constructor | Brad King | 2015-06-16 | 1 | -1/+2 |
|/ |
|
* | Fix typo in comment. | Nico Weber | 2015-05-02 | 1 | -1/+1 |
|
|
* | Merge pull request #962 from sgraham/pool-use-fix | Nico Weber | 2015-04-29 | 4 | -21/+43 |
|\ |
|
| * | simplify & inline | Scott Graham | 2015-04-27 | 2 | -18/+8 |
|
|
| * | avoid calling ResumeDelayedJobs instead | Scott Graham | 2015-04-24 | 3 | -10/+8 |
|
|
| * | add comment | Scott Graham | 2015-04-24 | 1 | -0/+3 |
|
|
| * | Fix pool use count going unbalanced | Scott Graham | 2015-04-23 | 3 | -9/+40 |
|
|
* | | Forward interruption signal to child processes. | Nicolas Despres | 2015-04-24 | 2 | -29/+34 |
|
|
* | | Allow SIGTERM for interruption. | Nicolas Despres | 2015-04-24 | 3 | -6/+38 |
|/ |
|
* | Run more than 34 processes on Win32 if we have 32+ cores. | Rui Ueyama | 2015-04-17 | 1 | -1/+1 |
|
|
* | Merge pull request #954 from nico/fix | Nico Weber | 2015-04-09 | 1 | -1/+1 |
|\ |
|
| * | Fix an assert (and tests in --debug mode) after #921. | Nico Weber | 2015-04-09 | 1 | -1/+1 |
|
|
* | | Fix backslashes in graphviz causing incorrect rendering on windows. | Spencer Judge | 2015-04-08 | 1 | -1/+4 |
|/ |
|
* | Don't get stuck on cyclic graphs where one edge has multiple outputs. | Nico Weber | 2015-04-01 | 2 | -4/+58 |
|
|
* | Cleanup: Don't search stack for cycle elements twice. | Nico Weber | 2015-04-01 | 1 | -4/+2 |
|
|
* | Cleanup: Make stack a const ref now that it's no longer modified. | Nico Weber | 2015-04-01 | 2 | -8/+10 |
|
|
* | Cleanup: Don't modify during cycle checking. | Nico Weber | 2015-04-01 | 1 | -6/+2 |
|
|
* | Let Stat() have an err outparam instead of writing to stderr. | Nico Weber | 2015-03-31 | 12 | -138/+192 |
|
|
* | Add an opt-in flag to make duplicate edges an error (`-w dupbuild=err`). | Nico Weber | 2015-03-24 | 4 | -9/+65 |
|
|
* | Swap order of -k and -l in help output, to keep the list alphabetized. | Nico Weber | 2015-03-24 | 1 | -1/+1 |
|
|
* | Make tests quiet again. | Nico Weber | 2015-03-24 | 2 | -5/+9 |
|
|
* | Move warning emission on dupe edges from State to ManifestParser. | Nico Weber | 2015-03-24 | 3 | -10/+11 |
|
|
* | Preallocate edge node vectors. ~1% faster. | Nico Weber | 2015-03-21 | 1 | -0/+2 |
|
|
* | Recover slowdown for cyclic rule bindings fix. | Nico Weber | 2015-03-21 | 1 | -9/+17 |
|
|
* | Don't crash on cyclic references between rule bindings. | Nico Weber | 2015-03-21 | 1 | -0/+12 |
|
|
* | Another crash fix for duplicate edges. Fixes #939. | Nico Weber | 2015-03-19 | 4 | -14/+38 |
|
|
* | Make failing stat() calls abort the build. | Nico Weber | 2015-03-19 | 6 | -40/+88 |
|
|
* | Add a missing &. (No behavior change, only used in tests.) | Nico Weber | 2015-03-18 | 2 | -2/+2 |
|
|
* | Env should only be about variables. No behavior change. | Nico Weber | 2015-03-18 | 2 | -8/+2 |
|
|
* | Merge pull request #930 from nico/depcolon | Nico Weber | 2015-03-17 | 5 | -6/+31 |
|\ |
|
| * | On unexpected output in a .d file, rebuild instead erroring. | Nico Weber | 2015-03-12 | 2 | -3/+21 |
|
|
| * | Reject depfiles that don't contain a : after the target name. | Nico Weber | 2015-03-12 | 4 | -3/+10 |
|
|
* | | Build self-consistent graphs for dupe edges with multiple outputs. | Nico Weber | 2015-03-15 | 5 | -1/+46 |
|/ |
|
* | Merge pull request #917 from pinotree/rlimit | Nico Weber | 2015-03-09 | 1 | -2/+2 |
|\ |
|
| * | subprocess_test: gracefully handle rlim.rlim_cur < kNumProcs | Pino Toscano | 2015-02-28 | 1 | -2/+2 |
|
|
* | | Merge pull request #910 from jlnt/master | Nico Weber | 2015-03-09 | 2 | -5/+33 |
|\ \ |
|
| * | | POSIX: detach background subprocesses from terminal. | Julien Tinnes | 2015-01-29 | 2 | -5/+33 |
|
|
* | | | Fix build with libc++ after #921. | Nico Weber | 2015-03-09 | 1 | -29/+29 |
|
|
* | | | Merge pull request #921 from mohamed/master | Nico Weber | 2015-03-09 | 10 | -87/+117 |
|\ \ \ |
|
| * | | | Added a new test to illustrate scoped rules | Mohamed Bamakhrama | 2015-03-08 | 1 | -0/+13 |
|
|
| * | | | Allow scoping rules through subninja | Mohamed Bamakhrama | 2015-03-01 | 10 | -87/+104 |
| | |/
| |/| |
|
* | | | Directly pass the string instead of char * to Truncate util function. It will... | Pierre Schweitzer | 2015-03-07 | 1 | -1/+1 |
|/ / |
|
* | | Typo fix in graph.cc | tzik | 2015-02-06 | 1 | -1/+1 |
|
|
* | | Allow manifest rebuild to loop up to 100 times | Colin Cross | 2015-02-03 | 1 | -14/+13 |
|/ |
|