summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* and fix version number in manualv1.2.0Evan Martin2013-04-051-1/+1
| | | | Comedy of errors.
* fix version number so that we actually call ourselves v1.2.0Evan Martin2013-04-052-5/+1
|
* Merge branch 'master' into releaseEvan Martin2013-04-051-1/+1
|\ | | | | | | Last-second manual fix.
| * tag a feature with the right version numberEvan Martin2013-04-051-1/+1
| |
* | version 1.2.0Evan Martin2013-04-0531-334/+760
|\ \ | |/
| * Merge pull request #525 from nico/escapedollarEvan Martin2013-04-023-32/+54
| |\ | | | | | | Dollar signs in depfiles are escaped as "$$", not "\$".
| | * Dollar signs in depfiles are escaped as "$$", not "\$".Nico Weber2013-04-023-32/+54
| |/ | | | | | | | | | | | | See http://llvm.org/PR15642. I checked that gcc does produce depfiles containing "$$" for files with "$" signs in their name (and as of r178540, so does clang). I also checked that .d files that escape dollar signs with "\$" are not read correctly by make.
| * allow paths with '!' in depfilesEvan Martin2013-03-303-31/+21
| | | | | | | | | | See funny paths in https://github.com/google/libcxx/tree/master/test/iterators/stream.iterators/istreambuf.iterator/
| * Merge pull request #522 from nico/spelldebugEvan Martin2013-03-281-1/+8
| |\ | | | | | | Add spell checking for debug flags.
| | * Add spell checking for debug flags.Nico Weber2013-03-271-1/+8
| |/ | | | | | | | | | | | | | | | | | | I just used `ninja -d stat` and it took me a bit to realize that I missed the trailing 's'. While here, move the message printing from printf() to Error(). This makes the output consistent with other error outputs: The messages are now prefixed with "ninja: error: " instead of just "ninja: " and they go to stderr instead of stdout.
| * Merge pull request #521 from riannucci/ignore_duplicate_edges_in_shcedule_workEvan Martin2013-03-264-7/+99
| |\ | | | | | | Fix duplicate edge Pool crash in the minimally invasive way
| | * Add regression testRobert Iannucci2013-03-231-0/+74
| | |
| | * Fix debug build on linux (type strictness).Robert Iannucci2013-03-232-3/+4
| | |
| | * Fix Pool to use a set internallyRobert Iannucci2013-03-182-7/+18
| | |
| | * Fix duplicate edge Pool crash in the minimally invasive wayRobert Iannucci2013-03-181-0/+6
| | |
| * | Merge pull request #518 from syntheticpp/max-patchEvan Martin2013-03-141-0/+2
| |\ \ | | | | | | | | Posix symbols are not enabled by default for MSVC
| | * | Posix symbols are not enabled by default for MSVCPeter Kümmel2013-03-141-0/+2
| |/ /
| * | Merge pull request #513 from fifoforlifo/masterEvan Martin2013-03-113-1/+10
| |\ \ | | |/ | |/| Adding elapsed time (%e) to NINJA_STATUS.
| | * Added %e to manual.asciidoc, fixed brace style.Avinash Baliga2013-03-112-3/+3
| | |
| | * Made %e purely a number.Avinash Baliga2013-03-041-1/+1
| | |
| | * NINJA_STATUS now takes %e for elapsed time.Avinash Baliga2013-03-042-0/+9
| | |
| * | Merge pull request #512 from pcc/compilation-databaseEvan Martin2013-03-102-0/+51
| |\ \ | | | | | | | | Add compdb tool
| | * | Add compdb toolPeter Collingbourne2013-03-102-0/+51
| | |/ | | | | | | | | | | | | This tool helps convert Ninja build files to a compilation database of the form used by Clang tooling.
| * | Merge pull request #499 from lht/patch-1Evan Martin2013-03-101-2/+2
| |\ \ | | | | | | | | Fix typo in manual
| | * | Fix typo in manualHaitao Li 李海涛2013-02-171-2/+2
| | | |
| * | | Merge pull request #503 from mo/fix_typo_20130219Evan Martin2013-03-101-1/+1
| |\ \ \ | | | | | | | | | | Fix typo, s/verison/version/
| | * | | Fix typo, s/verison/version/Martin Olsson2013-02-191-1/+1
| | | | |
| * | | | Merge pull request #504 from benvanik/masterEvan Martin2013-03-101-1/+3
| |\ \ \ \ | | | | | | | | | | | | Add a check for the VC++ 2012-style 64-bit path.
| | * | | | Add a check for the VC++ 2012-style 64-bit path.Ben Vanik2013-02-201-1/+3
| | |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | In VS2012 the path to the 64-bit tools has changed to VCINSTALLDIR\bin\x86_amd64\cl.exe. This change will make the bootstrap check there to see if it exists before falling back to the old amd64 path.
| * | | | Merge pull request #514 from dabrahams/patch-1Evan Martin2013-03-101-0/+1
| |\ \ \ \ | | |_|_|/ | |/| | | Bring in declaration of atoi
| | * | | Bring in declaration of atoiDave Abrahams2013-03-081-0/+1
| |/ / / | | | | | | | | ./bootstrap.py fails on some platforms without this include
| * | | Merge pull request #507 from ikarienator/masterEvan Martin2013-02-241-1/+2
| |\ \ \ | | | | | | | | | | Browse command does not parse URL correctly
| | * | | Browse command does not parse URL correctlyBei Zhang2013-02-241-1/+2
| | | | |
| * | | | Merge pull request #502 from tfarina/rm-unused-funEvan Martin2013-02-241-3/+1
| |\ \ \ \ | | |/ / / | |/| | | Removed unused UnitsWaiting() function from State class.
| | * | | Removed unused UnitsWaiting() function from State class.Thiago Farina2013-02-191-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This function was added at 307f0bbd("and some basic implementation"), but nobody calls it anymore. Signed-off-by: Thiago Farina <tfarina@chromium.org>
| * | | | Merge pull request #506 from syntheticpp/string-findEvan Martin2013-02-211-1/+2
| |\ \ \ \ | | |_|/ / | |/| | | Fix wrong usage of std::string::find
| | * | | Fix wrong usage of std::string::findPeter Kümmel2013-02-211-1/+2
| |/ / /
| * | | manual: move in_newline to the referenceEvan Martin2013-02-191-15/+19
| |/ / | | | | | | | | | It's a detail, it doesn't belong in the brief tutorial overview.
| * | add versioning notes to features in the manualEvan Martin2013-02-172-6/+7
| | | | | | | | | | | | This helps guide which ninja version to depend on.
| * | make doc xrefs link to section headersEvan Martin2013-02-171-7/+5
| |/
| * rearrange env variable section layoutEvan Martin2013-02-171-12/+14
| |
| * move from asciidoc html to asciidoc -> docbook -> htmlEvan Martin2013-02-173-3/+54
| | | | | | | | | | As best as I can tell this is the easiest way to customize the asciidoc HTML output.
| * say where the default value for -j comes fromEvan Martin2013-02-161-1/+1
| | | | | | | | This is a FAQ.
| * depfile helper: check errors on writing .d filesScott Graham2013-02-161-11/+26
| | | | | | | | Closes #492 and #493.
| * docs for ninja_required_versionEvan Martin2013-02-161-0/+44
| | | | | | | | (And some extra docs for top-level variables in general.)
| * add syntax for checking versionsEvan Martin2013-02-165-10/+102
| |
| * Merge pull request #498 from pck/cygwinEvan Martin2013-02-091-1/+1
| |\ | | | | | | util.cc: Reusing windows workaround for cygwin.
| | * util.cc: Reusing windows workaround for cygwin.Paul Kunysch2013-02-091-1/+1
| |/ | | | | | | | | | | This fixes: src/util.cc: In function 'double GetLoadAverage()': src/util.cc:337:28: error: 'getloadavg' was not declared in this scope
| * mark pools as experimental in the docsEvan Martin2013-02-011-0/+4
| |
| * add a release checklist so I won't forget steps in the futureEvan Martin2013-02-011-0/+9
| |