a small build system with a focus on speed
Go to file
Peter Wu 6e30a04bbe browse.py: fix delay with multiple connections
When Firefox opens two TCP connections and sends a request over the
second connection, it is not processed until the first one is closed.
Use a threaded server to solve this issue. Tested with Python 2.7.15 and
3.6.5. (Also tested with 2.6, but that failed due to lack of argparse.)

Link: https://bugs.python.org/issue31639
2018-10-25 13:10:30 +02:00
doc Add _Available since Ninja 1.4._ to deps and recompact 2017-08-30 08:59:40 -04:00
misc Misc typo fixes by https://github.com/codespell-project/codespell/ 2018-09-06 04:09:48 +00:00
src browse.py: fix delay with multiple connections 2018-10-25 13:10:30 +02:00
.clang-format Add a .clang-format file. 2014-04-15 22:08:21 -07:00
.gitignore add gitignore 2017-04-12 13:39:07 +09:00
.travis.yml Make travis build everything 2017-02-01 16:51:38 -08:00
appveyor.yml Add appveyor.yml 2018-04-06 17:03:03 +09:00
bootstrap.py drop bootstrap.py 2014-11-18 08:15:37 -08:00
configure.py Honor CXXFLAGS in configure.py 2018-04-06 03:15:01 -05:00
COPYING Revert 78f893bdbb 2017-05-15 18:41:22 -04:00
HACKING.md correction of location of binary 2017-09-28 15:02:14 -07:00
README prefer https in readme 2015-11-19 12:41:32 -08:00
RELEASING update RELEASING 2017-09-19 10:30:35 +09:00

Ninja is a small build system with a focus on speed.
https://ninja-build.org/

See the manual -- https://ninja-build.org/manual.html or
doc/manual.asciidoc included in the distribution -- for background
and more details.

Binaries for Linux, Mac, and Windows are available at
  https://github.com/ninja-build/ninja/releases
Run './ninja -h' for Ninja help.

To build your own binary, on many platforms it should be sufficient to
just run `./configure.py --bootstrap`; for more details see HACKING.md.
(Also read that before making changes to Ninja, as it has advice.)

Installation is not necessary because the only required file is the
resulting ninja binary. However, to enable features like Bash
completion and Emacs and Vim editing modes, some files in misc/ must be
copied to appropriate locations.

If you're interested in making changes to Ninja, read HACKING.md first.