2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-05-28 16:00:53 +00:00

README note about debugging

This commit is contained in:
Jay Berkenbilt 2017-08-25 19:58:18 -04:00
parent 46728e49cc
commit 2d0c68735b

View File

@ -1,5 +1,9 @@
# Release Reminders
* For debugging:
```
./configure CFLAGS="-g" CXXFLAGS="-g" --enable-werror --disable-shared
```
* Test for binary compatibility. The easiest way to do this is to check out the last release, run the test suite, check out the new release, run `make build_libqpdf`, check out the old release, and run `make check NO_REBUILD=1`.
* When making a release, always remember to run large file tests and image comparison tests (`--enable-test-compare-images` `--with-large-file-test-path=/path`). For Windows, use a Windows style path, not an MSYS path for large files. For a major release, consider running a spelling checker over the source code to catch errors in variable names, strings, and comments. Use `ispell -p ispell-words`.
* Run tests with sanitize address enabled: