@@ -248,36 +248,19 @@ download from http://code.google.com/p/gperftools/downloads/list
standard ./configure, make, make install
```
### ninja-based LLVM build
### Debug build of CPython
Ninja is supposed to be faster than make; I've only tried it very briefly, and it does seem to be faster when modifying LLVM files. May or may not be worth using; thought I'd jot down my notes though:
Having a debug-enabled CPython can be useful for debugging issues with our extension modules. To get it set up:
You may or may not need a more-recent version of ninja than your package manager provides:
Then, run `make dbgpy_TESTNAME` and it will launch the test under gdb. There's also a [wiki page](https://wiki.python.org/moin/DebuggingWithGdb) with some extra Python-specific GDB commands.