summaryrefslogtreecommitdiffstats
path: root/release_docs
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2020-10-03 20:53:10 (GMT)
committerLarry Knox <lrknox@hdfgroup.org>2020-10-03 20:53:10 (GMT)
commit52938596578e4b57e28ab835cdcc26958717d05f (patch)
treef29ef8a5f6c53369ef24923aa66f70ddc076dabc /release_docs
parent66f09dc70d1ab8f909dda99daa4facca66d8e5ca (diff)
downloadhdf5-52938596578e4b57e28ab835cdcc26958717d05f.zip
hdf5-52938596578e4b57e28ab835cdcc26958717d05f.tar.gz
hdf5-52938596578e4b57e28ab835cdcc26958717d05f.tar.bz2
Correct entries related to --enable-build-mode and --enable-profiling in
INSTALL file, update COPYING file, also removing obsolete SZIP paragraph from it.
Diffstat (limited to 'release_docs')
-rw-r--r--release_docs/INSTALL9
1 files changed, 6 insertions, 3 deletions
diff --git a/release_docs/INSTALL b/release_docs/INSTALL
index 5c54698..868f193 100644
--- a/release_docs/INSTALL
+++ b/release_docs/INSTALL
@@ -351,14 +351,17 @@ CONTENTS
so it can be debugged with gdb, dbx, ddd, etc., or it can be
compiled with various optimizations. To compile for symbolic
debugging (the default for snapshots), say
- `--enable-build-mode=production'; to compile with optimizations
+ `--enable-build-mode=debug'; to compile with optimizations
(the default for supported public releases),
- say `--enable-build-mode=production'. On some systems the
+ say `--enable-build-mode=production'. For a 'clean slate' configuration
+ with optimization disabled and nothing turned on,
+ say `--enable-build-mode=clean'. On some systems the
library can also be compiled for profiling with gprof by saying
- `--enable-production=profile'.
+ `--enable-profiling'.
$ ./configure --enable-build-mode=debug #symbolic debugging
$ ./configure --enable-build-mode=production #optimized code
+ $ ./configure --enable-build-mode=clean #'clean slate'
$ ./configure --enable-production=profile #for use with gprof
Regardless of whether support for symbolic debugging is enabled,