Add build system changes to release notes

This commit is contained in:
Jack Grigg 2020-01-31 14:58:52 +00:00
parent 2e9028f1f1
commit 795e1f40c5
1 changed files with 14 additions and 0 deletions

View File

@ -4,3 +4,17 @@ release-notes at release time)
Notable changes
===============
Build system
------------
- The `--enable-lcov`, `--disable-tests`, and `--disable-mining` flags for
`zcutil/build.sh` have been removed. You can pass these flags instead by using
the `CONFIGURE_FLAGS` environment variable. For example, to enable coverage
instrumentation (thus enabling "make cov" to work), call:
```
CONFIGURE_FLAGS="--enable-lcov --disable-hardening" ./zcutil/build.sh
```
- The build system no longer defaults to verbose output. You can re-enable
verbose output with `./zcutil/build.sh V=1`