summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Implement GetLoadAverage on AIX using libperfstatMike Seplowitz2015-08-192-0/+15
|
* Fix AIX compilation error related to printf macrosMike Seplowitz2015-08-191-3/+8
| | | | | On AIX, inttypes.h gets indirectly included by build_log.h. It's easiest just to ask for the printf format macros right away.
* Start AIX portMike Seplowitz2015-08-191-2/+11
|
* Strip tabs from od's outputMike Seplowitz2015-08-191-1/+1
| | | | /bin/od on Solaris and AIX both generate tabs.
* Merge pull request #1003 from sgraham/2015-compileNico Weber2015-08-103-4/+4
|\ | | | | Fix compile on VS2015
| * Remove accidental changesScott Graham2015-08-102-1105/+1105
| |
| * Some mucking with std:: for set_terminate and terminate_handlerScott Graham2015-08-104-1109/+1108
| |
| * Set _HAS_EXCEPTIONS=0 on MSVCScott Graham2015-08-101-0/+1
|/
* Merge pull request #998 from LindleyF/stdc-format-macrosNico Weber2015-08-031-0/+2
|\ | | | | Make sure not to re-define __STDC_FORMAT_MACROS.
| * Make sure not to re-define __STDC_FORMAT_MACROS.Lindley French2015-07-311-0/+2
|/
* Merge pull request #997 from mikesep/assert-arg-orderNico Weber2015-07-301-2/+2
|\ | | | | Correct order of ASSERT_EQ arguments
| * Correct order of ASSERT_EQ argumentsMike Seplowitz2015-07-301-2/+2
|/ | | | The correct order is ASSERT_EQ(expected, actual).
* Merge pull request #988 from nico/slashesNico Weber2015-07-103-7/+13
|\ | | | | win: print right slashes in 'unknown target' message
| * win: print right slashes in 'unknown target' messageNico Weber2015-07-103-7/+13
| |
* | Merge pull request #973 from sgraham/canonicalize-fixNico Weber2015-07-058-63/+149
|\ \ | | | | | | Fix crash in attempting to canonicalize paths longer than _MAX_PATH
| * | don't alias input/output in ExtractDeps (i.e. actually works now)Scott Graham2015-06-183-3/+8
| | |
| * | propagate include normalization failure to caller insteadScott Graham2015-06-185-25/+30
| | |
| * | Error+exit -> FatalScott Graham2015-06-181-2/+1
| | |
| * | don't abort()Scott Graham2015-06-091-3/+3
| | |
| * | push error to caller and abort on failureScott Graham2015-06-094-47/+73
| | |
| * | Fix crash in attempting to canonicalize paths longer than _MAX_PATHScott Graham2015-06-082-1/+52
| | |
* | | Merge pull request #979 from stinb/bootstrap-out-of-sourceNico Weber2015-07-052-9/+19
|\ \ \ | | | | | | | | Bootstrap out of source
| * | | Fix bootstrap from a source path containing spaces.Jason Haslam2015-06-221-2/+6
| | | |
| * | | Search for generated headers relative to build dir.Jason Haslam2015-06-222-1/+4
| | | |
| * | | Allow configure script to bootstrap out of source.Jason Haslam2015-06-221-7/+10
| | |/ | |/|
* | | fix typos, punctuation, redundant words in HACKING.mdNico Weber2015-07-021-5/+4
| | |
* | | Merge pull request #984 from martine/vcvarsNico Weber2015-07-012-7/+24
|\ \ \ | | | | | | | | point people at more detailed build docs if they're on Windows
| * | | point people at more detailed build docs if they're on WindowsEvan Martin2015-06-302-7/+24
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | It's a hard balance between "most people want to run configure --bootstrap" and "here's a massive wall of text of every detail about building". I think the balance in this change is better than it was before -- most people on Windows don't want to build their own binary. Fixes #983.
* | | mark this 1.6.0.gitNico Weber2015-06-291-1/+1
|/ /
* | Merge pull request #978 from martine/revert-971-bootstrap-out-of-sourceNico Weber2015-06-222-14/+8
|\ \ | | | | | | Revert "Bootstrap out of source"
| * | Revert "Bootstrap out of source"Nico Weber2015-06-222-14/+8
|/ /
* | Merge pull request #975 from nico/docsNico Weber2015-06-191-1/+4
|\ \ | | | | | | Document the change from #921 in the manual.
| * | Document the change from #921 in the manual.Nico Weber2015-06-191-1/+4
|/ /
* | Merge pull request #971 from stinb/bootstrap-out-of-sourceNico Weber2015-06-182-8/+14
|\ \ | | | | | | Bootstrap out of source
| * | Search for generated headers relative to build dir.Jason Haslam2015-05-262-1/+4
| | |
| * | Allow configure script to bootstrap out of source.Jason Haslam2015-05-261-7/+10
| |/
* | Merge pull request #970 from nico/explainNico Weber2015-06-181-1/+7
|\ \ | | | | | | Add a missing EXPLAIN() call.
| * | Add a missing EXPLAIN() call.Nico Weber2015-05-151-1/+7
| |/
* | Merge pull request #974 from bradking/add-missing-initializerNico Weber2015-06-181-1/+2
|\ \ | |/ |/| Add missing member initializer in Edge constructor
| * Add missing member initializer in Edge constructorBrad King2015-06-161-1/+2
|/ | | | | | In commit v1.1.0^2~15^2~20 (stub out an api and de-constify Pool, 2012-10-03) the Edge "pool_" member was added as a raw pointer but the initializer was accidentally left out of the constructor. Add it now.
* Fix typo in comment.Nico Weber2015-05-021-1/+1
|
* Merge pull request #962 from sgraham/pool-use-fixNico Weber2015-04-294-21/+43
|\ | | | | Fix pool use count going unbalanced
| * simplify & inlineScott Graham2015-04-272-18/+8
| |
| * avoid calling ResumeDelayedJobs insteadScott Graham2015-04-243-10/+8
| |
| * add commentScott Graham2015-04-241-0/+3
| |
| * Fix pool use count going unbalancedScott Graham2015-04-233-9/+40
| |
* | Merge pull request #743 from nicolasdespres/sigtermNico Weber2015-04-273-35/+72
|\ \ | |/ |/| Handle SIGTERM properly.
| * Forward interruption signal to child processes.Nicolas Despres2015-04-242-29/+34
| |
| * Allow SIGTERM for interruption.Nicolas Despres2015-04-243-6/+38
|/ | | | | Default signal sent by many other programs (mainly kill(1)) to gently terminates another one is SIGTERM.
* Merge pull request #958 from rui314/masterNico Weber2015-04-191-1/+1
|\ | | | | Run more than 34 processes on Win32 if we have 32+ cores.