summaryrefslogtreecommitdiffstats
path: root/tools/lib
Commit message (Collapse)AuthorAgeFilesLines
* Fix standalone compile issuesAllen Byrne2020-01-091-46/+39
|
* Merge pull request #2071 in HDFFV/hdf5 from ~KMU/hdf5:bugfix/intel_warnings ↵Kimmy Mu2020-01-062-2/+2
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to develop * commit '0a2bb11b248df6841daabca3970df5d8504adfc7': address problems from comments fix and address comments change according to previous comments add missing piece remove unnecessary check macro fix intel compile warnings Revert "fix warnings from Intel compiler" Revert "fix warnings and some text alignment" Revert "let hdf5 pick up the right compiler in Intel environment" Revert "fix issues from previous PR comments" Revert "using a different MACRO" using a different MACRO fix issues from previous PR comments let hdf5 pick up the right compiler in Intel environment fix warnings and some text alignment fix warnings from Intel compiler
| * fix and address commentskmu2019-12-112-18/+6
| |
| * Merge branch 'develop' into bugfix/intel_warningskmu2019-12-093-8/+1
| |\
| * | fix intel compile warningskmu2019-12-042-4/+16
| | |
* | | Small changes from the token_refactoring branch, to reduce the delta to developQuincey Koziol2020-01-041-3/+3
| | |
* | | Fix issue in h5dump where reference objects weren't being destroyedJordan Henderson2019-12-311-10/+3
| | |
* | | Clean up tools warnings introduced by H5TOOLS_ERR_INIT macroJordan Henderson2019-12-3112-552/+485
| | |
* | | Refactor tools library error handling macrosJordan Henderson2019-12-2813-843/+934
| | |
* | | Fix compile statement orderAllen Byrne2019-12-203-4/+5
| | |
* | | HDFFV-10976,-10980 Init obj_type before calling H5Rget_obj_type3Allen Byrne2019-12-203-4/+4
| | |
* | | Add unknown define for h5dump ref objectsAllen Byrne2019-12-202-1/+3
| | |
* | | HDFFV-10980 - h5diff uses new ref APIsAllen Byrne2019-12-1913-425/+820
| | |
* | | Revert and move declarationAllen Byrne2019-12-131-3/+5
| | |
* | | Correct struct accessAllen Byrne2019-12-131-2/+2
| | |
* | | Fix duplicate and varnameAllen Byrne2019-12-131-4/+3
| | |
* | | Fix compile and test issues from DTAllen Byrne2019-12-131-1/+1
| | |
* | | Fix issues found with ONLY_SHARED_LIBS optionAllen Byrne2019-12-111-14/+14
| | |
* | | Revert declaration used in macro.Allen Byrne2019-12-071-0/+1
| | |
* | | Revert declaration deletion.Allen Byrne2019-12-071-0/+1
| | |
* | | Address compile warningsAllen Byrne2019-12-063-6/+3
| | |
* | | Fix compile errors - mostly in jniAllen Byrne2019-12-062-22/+23
| | |
* | | HDFFV-10876 Update dump to match DDL specAllen Byrne2019-12-052-1/+4
| | |
* | | Update h5ls help and rework dump_mem routines for attrsAllen Byrne2019-12-044-169/+150
| | |
* | | Update data output referenceAllen Byrne2019-12-031-7/+24
| | |
* | | Update reference files and fix int as stringAllen Byrne2019-12-031-1/+7
| | |
* | | Merging in latest from upstream (HDFFV/hdf5:refs/heads/develop)Allen Byrne2019-12-023-8/+1
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '0772b975d1d2bfa15aedeb4b6e2c2aac78c61a2f': Fix missing free in H5T__ref_mem_read() Fix bugs in H5VL file comparison code. Add short circuit success to H5VL_cmp_connector_cls(). Implement file comparison VOL callback. Other changes to allow references to work with non-native connectors. There is a bug somewhere. Add support for point selections to H5S_select_project_intersection. Remove H5VL_NATIVE_FILE_GET_FILE_ID and add H5VL_OBJECT_GET_FILE Revert "Make a squash commit of 'Quiet some warnings by adjusting warnings level and fixing some code.' (commit 5c911d8baf3)" Revert "Oops, remove more C99 designated initializers for VS 2010 compatibility." H5R: fix H5Tconv to check for null references Trivial parameter renaming in VOL API calls. Move checking for zero offset in selection adjust calls to the selection callbacks. This makes the procedure for checking it consistent across selection types and between _s and _u, ensures it is always is performed even when called within the H5S package, and removes the redundant check that would occur when callins H5S_select_adjust_s() from outside the H5S package. Replace H5Sselect_adjust_u() and H5Shyper_adjust_s() with H5Sselect_adjust. Implement "adjust_s" callback for all selection types. Add range checking to H5Sselect_adjust().
| * | Revert "Make a squash commit of 'Quiet some warnings by adjusting warnings ↵David Young2019-11-273-8/+1
| |/ | | | | | | level and fixing some code.' (commit 5c911d8baf3)"
* | Merging in latest from upstream (HDFFV/hdf5:refs/heads/develop)Allen Byrne2019-11-263-1/+8
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit 'a8892bb42d6f6e4fbc30fae0eb2b957f81c938b9': (45 commits) Oops, remove more C99 designated initializers for VS 2010 compatibility. Add an #include to get a function declaration. Don't use C99 designated initializers, they're not compatible with Visual Studio 2010. Quiet some more maybe-uninitialized warnings---each is a false positive, *sigh*. This is more code that may not compile with VS2010, *sigh sigh*. Always warn on maybe-uninitialized. -Wincompatible-pointer-types was not available until GCC 5, so enable it only if that's the GCC version we're using. Only promote maybe-uninitialized warnings to errors on GCC 8. Even on GCC 8, there may be false positives at low optimization levels? I need to check. Only use -Werror=cast-function-type with GCC 8 and later. Put all of the -W options back into the order I found them in so that it's easier to compare old and new config/gnu-flags. Add new source files to CMakeLists.txt. Mention the -Werror= flags in libhdf5.settings.in. free -> HDfree Promote decleration-after-statement warnings to errors. Quiet decleration-after-statement warnings. Move a statement under some declarations since some vintages of Visual Studio don't like declarations after statements. Document H5D__chunk_mem_xfree_wrapper(). Undo accidental test deletion. Oops, delete a debug printf that snuck in here. Undo my changes to the HD macros, hadn't really intended those to be on this branch.... Make errors of some more warnings. Move disabled warnings to DEVELOPER_WARNING_CFLAGS. Put just one warning option on a line, and sort some of the options. Cast to the parameter type, H5VL_token_t *, instead of to unsigned char *. ...
| * Demote errors to warnings for a couple of unused-but-set variables thatDavid Young2019-11-132-0/+7
| | | | | | | | I cannot untangle right now.
| * Mark an unused parameter H5_ATTR_UNUSED.David Young2019-11-131-1/+1
| |
* | Comment correctionAllen Byrne2019-11-211-1/+1
| |
* | HDFFV-10876 Update h5dump and h5ls for new ref api.Allen Byrne2019-11-0717-1136/+1701
|/
* Fix reference type comparison in h5dumpJerome Soumagne2019-10-081-1/+5
|
* Make wrappers, tests and tools use H5Treclaim() instead of H5Dvlen_reclaim()Jerome Soumagne2019-10-083-15/+15
|
* More whitespace changesAllen Byrne2019-10-031-46/+5
|
* HDFFV-10919 merge synchingAllen Byrne2019-10-022-62/+62
|
* Renamed get/set_time() calls in the tools library to avoid nameDana Robinson2019-09-192-7/+10
| | | | clash when building static parallel HDF5 w/ static linking to OpenMPI.
* HDFFV-10876 h5dump OPAQUE size should be optionalAllen Byrne2019-08-271-9/+17
|
* Untangle #ifdef mess in ROS3 code.Dana Robinson2019-08-202-12/+9
|
* Add HD prefix to testsAllen Byrne2019-08-153-26/+26
|
* Updated h5trav.c to emit output that doesn't require ddl changes for mapDana Robinson2019-08-131-3/+0
| | | | support.
* Added the map (H5M) APIDana Robinson2019-08-133-0/+6
|
* Squashed commit of the following:Larry Knox2019-07-252-14/+513
| | | | | | | | | | | Merge changes from update_merged_S3_HDFS branch into develop. commit d5034315aea88629929ac0c9c59ebfafd5f21a31 Merge: 9c48823 d3fdcd8 Author: Larry Knox <lrknox@hdfgroup.org> Date: Thu Jul 25 08:24:53 2019 -0500 Merge branch 'develop' into update_merged_S3_HDFS
* Merge branch 'develop' into feature/update_gcc_flagsQuincey Koziol2019-07-101-1/+1
|\
| * HDFFV-10581 fix locations for static pdb filesAllen Byrne2019-07-081-1/+1
| |
* | Updates to warnhist script, along with a few cleanups, and add some commentsQuincey Koziol2019-07-102-2/+2
| | | | | | | | to warning cleanups that are a bit obscure.
* | Add support for GCC9, update warnhist script, and clean up warnings.Quincey Koziol2019-07-033-5/+5
|/
* Updated configure & CMake compiler flags for GCC 8.x, along with correspondingQuincey Koziol2019-06-283-10/+10
| | | | | changes to warnhist script (and some extra improvements for condensing C++ and Java warnings), and fixed a bunch of warnings.
* Add support for GCC 7.x warnings, update warnhist script to account for them,Quincey Koziol2019-06-212-7/+5
| | | | clean up warnings.