diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2020-10-05 22:02:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-05 22:02:49 (GMT) |
commit | 2384233b73921a2e1754d04141d9d6d54451ec26 (patch) | |
tree | 79413a07db7214808154149ae0b54efa340a9b78 | |
parent | ae0f6f25cd86b387f6f28b8cdbb4561bdc35fe4c (diff) | |
parent | 4ad5597525337a7a7ea308d899e6a7ccc30cc3df (diff) | |
download | hdf5-2384233b73921a2e1754d04141d9d6d54451ec26.zip hdf5-2384233b73921a2e1754d04141d9d6d54451ec26.tar.gz hdf5-2384233b73921a2e1754d04141d9d6d54451ec26.tar.bz2 |
Merge pull request #15 from lrknox/develop
Correct entries related to --enable-build-mode and --enable-profiling in
-rw-r--r-- | COPYING | 6 | ||||
-rw-r--r-- | release_docs/INSTALL | 11 |
2 files changed, 7 insertions, 10 deletions
@@ -97,10 +97,4 @@ and/or accompanying materials: ----------------------------------------------------------------------------- -HDF5 is available with the SZIP compression library but SZIP is not part -of HDF5 and has separate copyright and license terms. See SZIP Compression -in HDF Products (www.hdfgroup.org/doc_resource/SZIP/) for further details. - ------------------------------------------------------------------------------ - diff --git a/release_docs/INSTALL b/release_docs/INSTALL index fcf9602..d1addc9 100644 --- a/release_docs/INSTALL +++ b/release_docs/INSTALL @@ -351,15 +351,18 @@ 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-production=profile #for use with gprof + $ ./configure --enable-build-mode=clean #'clean slate' + $ ./configure --enable-profiling #for use with gprof Regardless of whether support for symbolic debugging is enabled, the library can also perform runtime debugging of certain packages |