Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | SEMANTIC CHANGE: implicit inputs are now required to exist | Evan Martin | 2011-05-13 | 4 | -10/+38 |
| | | | | | | Edges found through depfiles are special: they get an extra empty "phony" rule. (This is identical to the way you hack this with Makefiles.) | ||||
* | tweak browse appearance | Evan Martin | 2011-05-13 | 1 | -10/+17 |
| | |||||
* | make browse work for all ninja paths | Evan Martin | 2011-05-13 | 4 | -9/+14 |
| | | | | | | | Pass the path to the ninja binary in to the Python script. Confusingly, in some places the variables were already in place to do this, but they were accidentally used for something else entirely. | ||||
* | refix recompaction | Evan Martin | 2011-05-12 | 1 | -1/+1 |
| | | | | | Like all untested quick fixes, my previous quick fix actually introduced a reliable segfault. | ||||
* | quick fix: write out signature in recompaction | Evan Martin | 2011-05-11 | 1 | -0/+5 |
| | | | | | This needs refactoring but I already pushed the bad code so this hopefully makes it less broken. | ||||
* | don't crash on truncated log files | Evan Martin | 2011-05-11 | 2 | -3/+35 |
| | | | | | Add a test that tries all truncations of a log file and verifies it doesn't crash. | ||||
* | add a versioning header to build log, switch to v2 | Evan Martin | 2011-05-11 | 4 | -27/+83 |
| | | | | | In v2 we store both the start and end time of the command. This allows better visualization of the build process. | ||||
* | fix test | Evan Martin | 2011-05-09 | 1 | -1/+1 |
| | |||||
* | expose -k flag to users | Evan Martin | 2011-05-09 | 2 | -2/+12 |
| | |||||
* | add support for ignoring failures of some subtasks | Evan Martin | 2011-05-09 | 3 | -10/+57 |
| | |||||
* | windows: remove extra print | Evan Martin | 2011-05-08 | 1 | -1/+0 |
| | |||||
* | windows: fix more signedness warnings | Evan Martin | 2011-05-08 | 3 | -36/+36 |
| | |||||
* | windows: pass subprocess tests | Evan Martin | 2011-05-08 | 2 | -30/+55 |
| | |||||
* | windows: pass the DiskInterface tests | Evan Martin | 2011-05-08 | 1 | -21/+58 |
| | |||||
* | windows: successfully link tests | Evan Martin | 2011-05-06 | 4 | -27/+59 |
| | | | | | It links, with some hacks. Tests still fail. | ||||
* | fix tests broken by previous commit | Evan Martin | 2011-05-06 | 1 | -6/+6 |
| | |||||
* | windows: subprocess implementation for Windows | Evan Martin | 2011-05-06 | 4 | -6/+243 |
| | | | | Heavily based on a patch from Sergey Nenakhov <nenakhov.sergey@gmail.com>. | ||||
* | more refactoring for windows | Evan Martin | 2011-05-06 | 2 | -27/+16 |
| | |||||
* | Needed more path components to build Chrome. One path component in an uncommon | Scott Byer | 2011-05-03 | 1 | -1/+1 |
| | | | | sub-library ended up with 27 slashes in it. | ||||
* | refactor subprocess to make it easier for windows port | Evan Martin | 2011-05-03 | 4 | -75/+62 |
| | | | | | | Rather than tracking stdout/stderr explicitly, just keep an opaque pointer to a platform-specific 'stream' type. Also provide API to get at the process output. | ||||
* | fix unit test | Evan Martin | 2011-05-02 | 2 | -2/+2 |
| | |||||
* | Merge pull request #36 from polrop/test-clean-tool. | Evan Martin | 2011-05-02 | 9 | -51/+399 |
|\ | | | | | Test clean tool | ||||
| * | The cleaner can be used multiple times now. | Nicolas Despres | 2011-05-02 | 1 | -90/+48 |
| | | |||||
| * | Return non-zero status when errors occur. | Nicolas Despres | 2011-05-02 | 9 | -40/+78 |
| | | | | | | | | | | | | Clean all was not returning non-zero when an error occur (like when failing to remove a directory). This patch fix the problem and add a test for it. | ||||
| * | Add a test for the clean tool. | Nicolas Despres | 2011-05-02 | 8 | -34/+386 |
| | | | | | | | | It also fix a bug about the count of removed file reported. | ||||
* | | Add a Warning() report function. | Nicolas Despres | 2011-05-02 | 3 | -2/+14 |
|/ | | | | Also fix sites where Error() was misused. | ||||
* | windows: use abstractions in ninja.cc | Evan Martin | 2011-05-02 | 1 | -6/+13 |
| | |||||
* | windows: getopt const clean hack | Evan Martin | 2011-05-02 | 1 | -3/+3 |
| | |||||
* | windows: use millis abstraction instead of non-portable gettimeofday | Evan Martin | 2011-05-02 | 1 | -14/+28 |
| | |||||
* | remove ROOT_HACK hack; it is unused | Evan Martin | 2011-05-02 | 1 | -9/+0 |
| | |||||
* | windows: abstract around mkdir vs _mkdir | Evan Martin | 2011-05-02 | 3 | -1/+19 |
| | |||||
* | windows: use portable replacement of setlinebuf() | Evan Martin | 2011-05-02 | 1 | -1/+1 |
| | |||||
* | use refactored function to support implicit "all" target | Evan Martin | 2011-05-01 | 3 | -16/+20 |
| | |||||
* | canonicalize paths in refactored function | Evan Martin | 2011-05-01 | 1 | -2/+5 |
| | |||||
* | refactor out adding "all" to graph tool | Evan Martin | 2011-05-01 | 1 | -21/+31 |
| | |||||
* | add test for RootNodes(); fix comment | Evan Martin | 2011-05-01 | 3 | -12/+28 |
| | |||||
* | drop reserved words 'build'/'rule'/'subninja'/etc. | Evan Martin | 2011-05-01 | 3 | -50/+52 |
| | | | | | | | Instead, parse them as normal words, which makes them work as paths. We instead rely on the *position* (i.e., we start a statement with a keyword and not a path) to distinguish the keyword 'build' from the file 'build'. | ||||
* | fix warnings on Mac 10.5 | Arnaud Gelas | 2011-04-30 | 3 | -0/+6 |
| | | | | structures had virtual functions but not virtual destructors | ||||
* | fix compilation error on Mac 10.5 | Arnaud Gelas | 2011-04-30 | 1 | -1/+1 |
| | | | | std::vector<>::data() does not exist | ||||
* | fix SEGV in graph_test | Hiroyuki Iwatsuki | 2011-04-29 | 1 | -5/+5 |
| | |||||
* | add doxygen-compatibile comments to most classes | Evan Martin | 2011-04-29 | 16 | -63/+116 |
| | |||||
* | fix a signedness warning | Evan Martin | 2011-04-29 | 1 | -1/+1 |
| | |||||
* | Merged pull request #31 from polrop/generate-whole-graph. | Evan Martin | 2011-04-29 | 1 | -6/+20 |
|\ | | | | | The 'graph' tool now generates a graph based on all root nodes when called without any target. The build.ninja file is also adjusted so that we get the whole graph generated (including the doxygen part). | ||||
| * | graph: Assume all root nodes if no target given. | Nicolas Despres | 2011-04-26 | 1 | -6/+20 |
| | | | | | | | | This way we can generate the complete graph. | ||||
* | | Merged pull request #30 from polrop/more-tools. | Evan Martin | 2011-04-29 | 5 | -2/+447 |
|\ \ | |/ | | | adds the -C option and the following tools: targets, rules and clean | ||||
| * | Add the 'clean' tool. | Nicolas Despres | 2011-04-26 | 3 | -1/+295 |
| | | | | | | | | It removes built files either by rule or target or everything. | ||||
| * | Add the 'rules' tool. | Nicolas Despres | 2011-04-26 | 1 | -1/+18 |
| | | | | | | | | | | It can be useful in conjunction with the 'targets' tool for writing shell completion scripts and when debugging. | ||||
| * | Add the 'targets' tool. | Nicolas Despres | 2011-04-26 | 3 | -1/+124 |
| | | | | | | | | | | | | | | | | | | | | | | This tool list targets by depth or by rule. It can be useful: - for shell completion script ; - to know what are the primary targets: ninja -t targets depth 1 ; - to know targets that are linked: ninja -t rule link ; - when debugging. It works by first listing the root nodes and then following the input nodes of their in edge. | ||||
| * | Add -C DIR option. | Nicolas Despres | 2011-04-26 | 1 | -1/+12 |
| | | | | | | | | | | | | Can be useful when calling ninja from a script or a code editor or in many other occasions. It costs nothing and does not bring more complexity, so I think we can afford it. | ||||
* | | Merged pull request #29 from polrop/minor-bug-fix. | Evan Martin | 2011-04-28 | 6 | -24/+34 |
|\ \ | |/ | | | Minor bug fix |