diff options
author | Robb Matzke <matzke@llnl.gov> | 1998-01-27 19:35:36 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1998-01-27 19:35:36 (GMT) |
commit | 8a8b71b3f5ac6df015d7c37d7783e9b9e2746b18 (patch) | |
tree | c20d9fb4ad78ff9ef51be4b8f8cc26f0e79ef1c8 | |
parent | 5c6a3af39679b2bbbdaebf8f1c19edbeed7af248 (diff) | |
download | hdf5-8a8b71b3f5ac6df015d7c37d7783e9b9e2746b18.zip hdf5-8a8b71b3f5ac6df015d7c37d7783e9b9e2746b18.tar.gz hdf5-8a8b71b3f5ac6df015d7c37d7783e9b9e2746b18.tar.bz2 |
[svn-r171] Changes since 19980126
----------------------
./MANIFEST
Added new files.
./config/linux
Added `-pipe' to the default GCC flags since this is supposed
to result in better performance on a multi-processor machine.
./html/Datasets.html
./html/dataset_p1.gif [NEW]
./html/dataset_p1.obj [NEW]
Updated to match source. The things which aren't part of the
Feb-1 prototype are marked in bold. Added an example for
partial I/O.
./html/Groups.html [NEW]
./html/group_p1.gif [NEW]
./html/group_p1.obj [NEW]
./html/group_p2.gif [NEW]
./html/group_p2.obj [NEW]
./html/group_p3.gif [NEW]
./html/group_p3.obj [NEW]
New documentation for groups.
./html/H5.sample_code.html
Updated two examples to match code.
-rw-r--r-- | MANIFEST | 27 | ||||
-rw-r--r-- | config/linux | 2 |
2 files changed, 24 insertions, 5 deletions
@@ -15,15 +15,34 @@ ./config/freebsd2.2.1 ./config/linux ./configure.in -./html/H5.apiv2.html +./html/CodeReview.html +./html/Datasets.html +./html/Datatypes.html +./html/ExternalFiles.html +./html/Groups.html ./html/H5.api_map.html +./html/H5.apiv2.html ./html/H5.coding_standard.html ./html/H5.format.html +./html/H5.intro.html ./html/H5.sample_code.html -./html/heap.txt ./html/MemoryManagement.html -./html/move.html ./html/ObjectHeader.txt +./html/compat.html +./html/dataset_p1.gif +./html/dataset_p1.obj +./html/group_p1.gif +./html/group_p1.obj +./html/group_p2.gif +./html/group_p2.obj +./html/group_p3.gif +./html/group_p3.obj +./html/heap.txt +./html/move.html +./html/review1.html +./html/review1a.html +./html/storage.html +./html/symtab ./src/debug.c ./src/H5.c ./src/H5detect.c @@ -121,4 +140,4 @@ ./tgif/FileGrammar.obj ./tgif/UserView.obj ./tgif/IOPipe.obj -./tgif/RobbPipe.obj
\ No newline at end of file +./tgif/RobbPipe.obj diff --git a/config/linux b/config/linux index b4bbae6..59d5abb 100644 --- a/config/linux +++ b/config/linux @@ -45,7 +45,7 @@ debug="-g -DH5AC_DEBUG -DH5B_DEBUG -DH5F_DEBUG -DH5G_DEBUG -UH5O_DEBUG -DH5F_OPT production="-O3 -DNDEBUG -finline-functions -funroll-loops -malign-double -fomit-frame-pointer" -default_mode='$debug $warn -DH5F_LOW_DFLT=H5F_LOW_SEC2' +default_mode='$debug $warn -pipe -DH5F_LOW_DFLT=H5F_LOW_SEC2' # Don't set CFLAGS if the user already did. if test -z "$CFLAGS"; then |