summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* SEMANTIC CHANGE: implicit inputs are now required to existEvan Martin2011-05-135-16/+54
| | | | | | 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 appearanceEvan Martin2011-05-131-10/+17
|
* make browse work for all ninja pathsEvan Martin2011-05-134-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 recompactionEvan Martin2011-05-121-1/+1
| | | | | Like all untested quick fixes, my previous quick fix actually introduced a reliable segfault.
* quick fix: write out signature in recompactionEvan Martin2011-05-111-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 filesEvan Martin2011-05-112-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 v2Evan Martin2011-05-114-27/+83
| | | | | In v2 we store both the start and end time of the command. This allows better visualization of the build process.
* clang noteEvan Martin2011-05-111-0/+4
|
* Merge pull request #44 from polrop/update-todoEvan Martin2011-05-101-3/+0
|\ | | | | Update the todo list since -k is implemented now.
| * Update the todo list since -k is implemented now.Nicolas Despres2011-05-101-3/+0
| |
* | Merge pull request #43 from polrop/fix-bootstrap-for-dashEvan Martin2011-05-101-3/+6
|\ \ | |/ |/| Fix bootstrap script for dash.
| * Fix bootstrap script for dash.Nicolas Despres2011-05-101-3/+6
|/ | | | | | On Ubuntu /bin/sh is a link to dash. The bootstrap script reported a 'Bad substitution' error line 39 when interpreted by dash. This patch fix the problem.
* fix testEvan Martin2011-05-091-1/+1
|
* make platform a command-line arg to configureEvan Martin2011-05-092-10/+20
|
* expose -k flag to usersEvan Martin2011-05-092-2/+12
|
* add support for ignoring failures of some subtasksEvan Martin2011-05-093-10/+57
|
* rename gen-build-file to configureEvan Martin2011-05-093-8/+12
| | | | Change it so it always writes build.ninja; easier to run directly.
* windows: remove extra printEvan Martin2011-05-081-1/+0
|
* windows: fix more signedness warningsEvan Martin2011-05-083-36/+36
|
* windows: pass subprocess testsEvan Martin2011-05-082-30/+55
|
* windows: pass the DiskInterface testsEvan Martin2011-05-081-21/+58
|
* Merge pull request #42 from ascherkus/masterEvan Martin2011-05-081-1/+7
|\ | | | | Quick fix for bootstrap.sh due to win32 files
| * Fix bootstrap.sh to include the correct subprocess{-win32}.cc based on the ↵Andrew Scherkus2011-05-081-1/+7
|/ | | | platform.
* amend HACKING with how to dev for windowsEvan Martin2011-05-061-0/+11
|
* windows: successfully link testsEvan Martin2011-05-065-33/+70
| | | | | It links, with some hacks. Tests still fail.
* fix tests broken by previous commitEvan Martin2011-05-061-6/+6
|
* Merge pull request #40 from fischman/masterEvan Martin2011-05-061-2/+2
|\ | | | | CC vs CXX in ninja/gen-build-file.py
| * Use $CXX instead of $CC when building C++ ninja source.Ami Fischman2011-05-061-2/+2
| |
* | windows: subprocess implementation for WindowsEvan Martin2011-05-064-6/+243
| | | | | | | | Heavily based on a patch from Sergey Nenakhov <nenakhov.sergey@gmail.com>.
* | more refactoring for windowsEvan Martin2011-05-062-27/+16
|/
* Merge pull request #38 from SByer/path_fix.Evan Martin2011-05-031-1/+1
|\ | | | | Needed more path components to build Chrome.
| * Needed more path components to build Chrome. One path component in an uncommonScott Byer2011-05-031-1/+1
|/ | | | sub-library ended up with 27 slashes in it.
* windows: build win32 subprocess file on windowsEvan Martin2011-05-031-4/+5
|
* refactor subprocess to make it easier for windows portEvan Martin2011-05-034-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.
* generate mingw build files if requestedEvan Martin2011-05-031-26/+52
| | | | Set NINJA_PLATFORM=mingw to get them.
* fix unit testEvan Martin2011-05-022-2/+2
|
* Merge pull request #37 from polrop/add-guidelines.Evan Martin2011-05-021-0/+20
|\ | | | | Add coding and documentation guidelines.
| * Add coding and documentation guidelines.Nicolas Despres2011-05-021-0/+20
| | | | | | | | As discussed on the mailing list.
* | Merge pull request #36 from polrop/test-clean-tool.Evan Martin2011-05-0210-52/+400
|\ \ | | | | | | Test clean tool
| * | The cleaner can be used multiple times now.Nicolas Despres2011-05-021-90/+48
| | |
| * | Return non-zero status when errors occur.Nicolas Despres2011-05-029-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 Despres2011-05-029-35/+387
| |/ | | | | | | It also fix a bug about the count of removed file reported.
* | Merge pull request #35 from polrop/add-warning-funcion.Evan Martin2011-05-023-2/+14
|\ \ | | | | | | Add a Warning() report function.
| * | Add a Warning() report function.Nicolas Despres2011-05-023-2/+14
| |/ | | | | | | Also fix sites where Error() was misused.
* | Merge pull request #34 from polrop/fix-typo.Evan Martin2011-05-021-1/+1
|\ \ | |/ |/| Fix typo in documentation.
| * Fix typo in documentation.Nicolas Despres2011-05-021-1/+1
|/
* windows: use abstractions in ninja.ccEvan Martin2011-05-021-6/+13
|
* windows: getopt const clean hackEvan Martin2011-05-021-3/+3
|
* windows: use millis abstraction instead of non-portable gettimeofdayEvan Martin2011-05-021-14/+28
|
* remove ROOT_HACK hack; it is unusedEvan Martin2011-05-021-9/+0
|