summaryrefslogtreecommitdiffstats
path: root/HACKING.md
diff options
context:
space:
mode:
authorEvan Martin <martine@danga.com>2014-11-18 17:58:45 (GMT)
committerEvan Martin <martine@danga.com>2014-11-18 17:58:45 (GMT)
commit1e21e5f44181ccb07e75bc78593714f403836b71 (patch)
tree652f269ae09cdd534e15fb5be599893c6a90cd9b /HACKING.md
parentddeee436307ae4c206b7f9d132e16cecb1bc71ce (diff)
downloadNinja-1e21e5f44181ccb07e75bc78593714f403836b71.zip
Ninja-1e21e5f44181ccb07e75bc78593714f403836b71.tar.gz
Ninja-1e21e5f44181ccb07e75bc78593714f403836b71.tar.bz2
drop leftover references to bootstrap.py
Diffstat (limited to 'HACKING.md')
-rw-r--r--HACKING.md9
1 files changed, 3 insertions, 6 deletions
diff --git a/HACKING.md b/HACKING.md
index ef521e1..059a424 100644
--- a/HACKING.md
+++ b/HACKING.md
@@ -7,10 +7,6 @@ The primary build target of interest is `ninja`, but when hacking on
Ninja your changes should be testable so it's more useful to build
and run `ninja_test` when developing.
-(`./bootstrap.py` creates a bootstrap `ninja` and runs the above
-process; it's only necessary to run if you don't have a copy of
-`ninja` to build with.)
-
### Adjusting build flags
Build in "debug" mode while developing (disables optimizations and builds
@@ -126,14 +122,15 @@ it's locked while in use.
* Install Visual Studio (Express is fine), [Python for Windows][],
and (if making changes) googletest (see above instructions)
-* In a Visual Studio command prompt: `python bootstrap.py`
+* In a Visual Studio command prompt: `python configure.py --bootstrap`
[Python for Windows]: http://www.python.org/getit/windows/
### Via mingw on Windows (not well supported)
* Install mingw, msys, and python
-* In the mingw shell, put Python in your path, and `python bootstrap.py`
+* In the mingw shell, put Python in your path, and
+ `python configure.py --bootstrap`
* To reconfigure, run `python configure.py`
* Remember to strip the resulting executable if size matters to you