-
-
Notifications
You must be signed in to change notification settings - Fork 258
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rework the compression library search #5085
Open
byrnHDF
wants to merge
28
commits into
HDFGroup:develop
Choose a base branch
from
byrnHDF:develop-comp-search
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+52
−22
Open
Changes from 21 commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
5b42956
Rework compression lib search to match documented process
byrnHDF e5e34cd
Merge branch 'HDFGroup:develop' into develop-comp-search
byrnHDF 37feafb
Revert for legacy szip
byrnHDF 18af724
Return the legacy find module
byrnHDF 3433678
Remove the entire legacy SZIP find
byrnHDF 9546458
Clarify which library is built
byrnHDF 9deb725
Added release note.
byrnHDF 13eca0f
Merge branch 'HDFGroup:develop' into develop-comp-search
byrnHDF dfc2333
Merge branch 'HDFGroup:develop' into develop-comp-search
byrnHDF ed9dfd6
Add release note about NOT FOUND lib error message.
byrnHDF 9041e1d
Merge branch 'HDFGroup:develop' into develop-comp-search
byrnHDF cf3b44f
Convert default ZLIB option to OFF
byrnHDF 5bcf394
Correct spelling
byrnHDF f912eeb
netcdf requires zlib
byrnHDF 4d3a788
Match zlib setting to szip setting in workflows
byrnHDF 9c658af
Revert accidental file check-in
byrnHDF d578c40
Update CMakeFilters.cmake
lrknox 7183cc3
Merge branch 'HDFGroup:develop' into develop-comp-search
byrnHDF 4ce8ada
Move variable declaration inside ifdef block
byrnHDF 183524a
Committing clang-format changes
github-actions[bot] e214fa3
Merge branch 'HDFGroup:develop' into develop-comp-search
byrnHDF c015f17
Merge branch 'HDFGroup:develop' into develop-comp-search
byrnHDF cd902ad
Correct plugins ref
byrnHDF 7af667f
Merge branch 'HDFGroup:develop' into develop-comp-search
byrnHDF 6eb007f
Merge branch 'HDFGroup:develop' into develop-comp-search
byrnHDF 912984d
Merge branch 'HDFGroup:develop' into develop-comp-search
byrnHDF 195d982
Merge branch 'HDFGroup:develop' into develop-comp-search
byrnHDF 999d6c8
Merge branch 'HDFGroup:develop' into develop-comp-search
byrnHDF File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,7 +50,7 @@ New Features | |
- Renamed the option: HDF5_ENABLE_Z_LIB_SUPPORT | ||
|
||
The option has been renamed to HDF5_ENABLE_ZLIB_SUPPORT to be consistent | ||
with the naming of other options. | ||
with the naming of other options. Also, the option defaults to OFF. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Definitely want to make sure this is very well called out for the next release There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Absolutely |
||
|
||
- Added support for MinGW + MSYS2 when building with CMake | ||
|
||
|
@@ -510,6 +510,18 @@ Bug Fixes since HDF5-2.0.0 release | |
|
||
Configuration | ||
------------- | ||
- Changed the zlib/szip compression find message to FATAL ERROR | ||
|
||
The message was changed to indicate that zlib/szip compression was requested and | ||
that it was not found. If an option is requested, not finding it should always | ||
be an error. | ||
|
||
- Removed the module search find_package for szip library | ||
|
||
There is not a szip module file to use, so the find_package only uses | ||
find_package in config mode. The choice then is to either build szip, with libaec, | ||
inline or find a system installed szip library, built with CMake. | ||
|
||
- Changed name of libhdf5hl_fortran installed by autotools to libhdf5_hl_fortran. The | ||
new name is consistent with the name of the lib when installed by CMake and with the | ||
other hl libs. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Accidental?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Most likely yes.