We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b465995 commit 053e3b5Copy full SHA for 053e3b5
README.md
@@ -236,10 +236,16 @@ CFLAGS to disable the compilation optimization parameters:
236
```shell
237
$ export CFLAGS="-g -O0"
238
$ ./build.sh
239
-$ ./configure
+$ ./configure --enable-assertions=yes
240
$ make
241
$ sudo make install
242
```
243
+"Assertions allow us to document assumptions and to spot violations early in the
244
+development process. What is more, assertions allow us to spot violations with a
245
+minimum of effort." https://dl.acm.org/doi/pdf/10.1145/240964.240969
246
+
247
+It is recommended to use assertions where applicable, and to enable them with
248
+'--enable-assertions=yes' during the testing and debugging workflow.
249
250
### Benchmarking
251
0 commit comments