summaryrefslogtreecommitdiffstats
path: root/release_docs
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2020-10-05 22:42:05 (GMT)
committerGitHub <noreply@github.com>2020-10-05 22:42:05 (GMT)
commitab7333fd8b26eebbd1cfe215a34047d1c5502afc (patch)
treee957ff6dcde15af35c96f8963977c0ce14d0b986 /release_docs
parent0736dcbfafa4c69625dfb2d3363443e223b844b2 (diff)
parent7f532ba023c21ba486f4e8f092199043c5e8a202 (diff)
downloadhdf5-ab7333fd8b26eebbd1cfe215a34047d1c5502afc.zip
hdf5-ab7333fd8b26eebbd1cfe215a34047d1c5502afc.tar.gz
hdf5-ab7333fd8b26eebbd1cfe215a34047d1c5502afc.tar.bz2
Merge pull request #14 from lrknox/hdf5_1_10
Correct entries related to --enable-build-mode and --enable-profiling in
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,