summaryrefslogtreecommitdiffstats
path: root/src/deps_log.cc
Commit message (Expand)AuthorAgeFilesLines
* Add 'using namespace std;' to all cc files to prepare for removing it from he...Michael Jones2020-09-301-0/+2
* Merge pull request #1780 from jhasse/delay-openJan Niklas Hasse2020-08-031-28/+44
|\
| * Delay actually opening log files until the first write, fix #1724Jan Niklas Hasse2020-05-231-28/+44
* | [clang-tidy] check empty instead of size (#1784)Rosen Penev2020-06-041-1/+1
|/
* Ignore nonexistent .ninja_log/.ninja_deps for restat and recompactJan Niklas Hasse2019-12-231-7/+7
* Remove trailing whitespace from all filesJan Niklas Hasse2019-04-171-2/+2
* Fix older VS compatibility issues and PDB files generation issue. (#1435)ikifof2018-11-071-0/+3
* Merge pull request #1219 from QuLogic/resolutionNico Weber2017-10-201-7/+12
|\
| * Use 64-bit-alignment-safe timestamp reading.Elliott Sales de Andrade2017-09-161-2/+8
| * Make TimeStamp 64-bit.Elliott Sales de Andrade2017-09-161-7/+6
* | Fix potential buffer overrunLogan Chien2017-10-161-1/+1
|/
* Directly pass the string instead of char * to Truncate util function. It will...Pierre Schweitzer2015-03-071-1/+1
* Fix compilation errors on Visual Studio 2015 (_MSC_VER 1900).Beren Minor2014-12-311-2/+2
* Remove 'Recompacting...' messages.Nico Weber2014-12-181-2/+0
* no need to save slash_bits, add commentScott Graham2014-11-111-9/+9
* save slash_bits in depslogScott Graham2014-11-111-9/+8
* make all GetNode explicit, add DepsLog canonicalize testScott Graham2014-11-101-2/+8
* Don't print "Recompacting..." message from tests.Nico Weber2014-09-191-1/+2
* Move duplicated code into a helper function.Nico Weber2014-01-041-11/+11
* Add a test for collection of dead deps entries.Nico Weber2014-01-031-0/+6
* Remove dead entries in .ninja_log and .ninja_deps while recompacting.Nico Weber2014-01-021-0/+7
* Make depslog v1->v3 message less scary.Nico Weber2013-09-061-1/+1
* Fix an issue with more than 64k deps, spotted by maximuska.Nico Weber2013-08-281-1/+1
* document an assumptionNico Weber2013-08-281-0/+1
* Deps log format v3Nico Weber2013-08-281-27/+32
* Suffix depslog path records with their expected index.Nico Weber2013-08-261-6/+31
* Merge pull request #612 from maximuska/proposed/deps_log_write_errors_checkingNico Weber2013-07-241-14/+41
|\
| * Adding checks for record overflow in deps_logMaxim Kalaev2013-07-011-6/+21
| * Adding error checking on fwrite/fflush in deps_logMaxim Kalaev2013-07-011-12/+24
* | Add a 'recompact' tool, which forces recompaction of the build and deps logs.Nico Weber2013-07-081-1/+1
|/
* Make sure to not write partial deps entries.Nico Weber2013-06-141-0/+9
* Recompact the deps log when it gets too big.Nico Weber2013-05-011-2/+19
* Keep a DepsLog's data valid after a call to DepsLog::Recompact().Nico Weber2013-05-011-5/+8
* Let DepsLog::RecordDeps() update its in-memory representation.Nico Weber2013-04-301-0/+7
* Move updating DepsLog's deps_ array into its own function.Nico Weber2013-04-301-6/+12
* Move some DepsLog::Deps initialization code into its constructor.Nico Weber2013-04-301-4/+1
* Merge pull request #558 from nico/buildfixEvan Martin2013-04-291-3/+1
|\
| * Introduce a Truncate() function that works on POSIX and Windows.Nico Weber2013-04-291-3/+1
* | Merge pull request #556 from nico/unlinkEvan Martin2013-04-291-0/+5
|\ \
| * | Make sure that recompaction writes a pristine new depslog.Nico Weber2013-04-291-0/+5
| |/
* | Don't crash during deps log recompaction if there's more than one deps entry.Nico Weber2013-04-291-0/+2
|/
* don't count eof as truncatedEvan Martin2013-04-271-1/+2
* fix warningEvan Martin2013-04-271-1/+1
* deps log: recover on truncated entryEvan Martin2013-04-271-6/+35
* Merge pull request #535 from sgraham/fix-windows-depslogEvan Martin2013-04-091-0/+2
|\
| * fix windows build after depslogScott Graham2013-04-091-0/+2
* | On invalid depslog header, restart build instead of showing an error.Nico Weber2013-04-091-9/+5
|/
* Write the depslog version in binary instead of text.Nico Weber2013-04-091-5/+12
* add a test for the "deps out of date" caseEvan Martin2013-04-091-1/+5
* don't call .front() on an empty vectorEvan Martin2013-04-081-1/+2