summaryrefslogtreecommitdiffstats
path: root/bootstrap.py
Commit message (Collapse)AuthorAgeFilesLines
* add a helper binary for wrapping cl.exeEvan Martin2012-08-151-6/+36
| | | | Modify bootstrap etc. to make use of this binary.
* fix syntax errors in bootstrap.pyMatthew Woehlke2012-08-101-2/+2
|
* refactorEvan Martin2012-08-101-4/+3
|
* add bootstrap option to force 64-bitMatthew Woehlke2012-08-101-2/+10
|
* windows bootstrap: clean up object filesEvan Martin2012-08-101-0/+4
|
* rename subprocess.cc to reflex its posixnessEvan Martin2012-07-271-1/+1
|
* bootstrap: set _WIN32_WINNT to WinXP for mingwEvan Martin2012-07-271-3/+5
| | | | From a patch from Peter Kuemmel <syntheticpp@gmx.net>.
* wrap at 80 columnsEvan Martin2012-07-271-1/+2
|
* Prevent multiple definition link errorJon2012-06-161-0/+2
| | | | Globbed inclusion of `src/hash_collision_bench.cc` cause link errors
* bootstrap: fix path magic on windowsBrandon Philips2012-06-111-1/+1
| | | | | It was reported that argv[0] doesn't get set on windows. Some research showed that using abspath(__filename__) should accomplish this.
* bootstrap: chdir to bootstrap's directoryBrandon Philips2012-06-101-0/+2
| | | | | | | | | | When integrating ninja into luvit I naively tried calling: ./tools/ninja/bootstrap.py This broke because bootstrap expects you to be in the ninja directory when you call it. This patch makes it possible to run bootstrap.py like above and have it work.
* Use subprocess.call for Python 2.4 compatibilityElliott Hird2012-05-231-4/+3
|
* Merge pull request #265 from mathstuf/dev/verbose-bootstrapEvan Martin2012-04-101-2/+16
|\ | | | | Allow the bootstrap to be verbose
| * Allow the bootstrap to be verboseBen Boeckel2012-03-301-2/+16
| |
* | Add NOMINMAX macro to fix a compilation error on Win32Petr Wolf2012-03-161-1/+1
|/
* windows: use _WIN32 define everywhereEvan Martin2012-01-221-1/+1
| | | | Rather than mixing use of WIN32 and _WIN32.
* configure.py: make CC='command with args' workCraig Schlenter2012-01-091-3/+5
|
* don't attempt to build browse.* in bootstrap modeEvan Martin2012-01-041-8/+7
|
* windows: more build fixesScott Graham2012-01-041-6/+17
|
* windows: make bootstrap.py/configure.py work with MSVCScott Graham2012-01-041-3/+6
|
* rearrange the new bootstrap.pyEvan Martin2011-12-271-16/+20
| | | | (e.g. remove tabs)
* Rewrite the bootstrap script in PythonElliott Hird2011-12-151-0/+72
This allows trouble-free builds on platforms with non-standard Python executable names. As a bonus, it passes the arguments received on to configure.py, so you don't have to reconfigure to build in a non-standard manner.