-
Notifications
You must be signed in to change notification settings - Fork 7.4k
[hdf5] add tools and fortran feature #9864
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
Merged
Merged
Changes from all commits
Commits
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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| diff --git a/hdf5-1.10.5/hl/src/H5LDprivate.h b/hdf5-1.10.5/hl/src/H5LDprivate.h | ||
| index b52928b53..5f02ea781 100644 | ||
| --- a/hdf5-1.10.5/hl/src/H5LDprivate.h | ||
| +++ b/hdf5-1.10.5/hl/src/H5LDprivate.h | ||
| @@ -40,8 +40,8 @@ typedef struct H5LD_memb_t { | ||
| * #2: these two routines are too specific to be made as public routines | ||
| * Decide to do #3 at this point of time after some discussion. | ||
| */ | ||
| -void H5LD_clean_vector(H5LD_memb_t *listv[]); | ||
| -int H5LD_construct_vector(char *fields, H5LD_memb_t *listv[], hid_t par_tid); | ||
| +H5_HLDLL void H5LD_clean_vector(H5LD_memb_t *listv[]); | ||
| +H5_HLDLL int H5LD_construct_vector(char *fields, H5LD_memb_t *listv[], hid_t par_tid); | ||
|
|
||
| #endif /* end _H5LDprivate_H */ | ||
|
|
This file contains hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,37 @@ | ||
| diff --git a/hdf5-1.10.5/CMakeLists.txt b/hdf5-1.10.5/CMakeLists.txt | ||
| index 6ca2f5c54..f7a4db9e5 100644 | ||
| --- a/hdf5-1.10.5/CMakeLists.txt | ||
| +++ b/hdf5-1.10.5/CMakeLists.txt | ||
| @@ -150,6 +150,7 @@ set (HDF5_JAVA_TEST_LIB_NAME "${HDF5_EXTERNAL_LIB_PREFIX}${HDF5_JAVA_TEST_LIB | ||
| #----------------------------------------------------------------------------- | ||
| # Set the target names of all the libraries | ||
| #----------------------------------------------------------------------------- | ||
| +if(NOT BUILD_SHARED_LIBS) | ||
| set (HDF5_LIB_TARGET "${HDF5_LIB_CORENAME}-static") | ||
| set (HDF5_TEST_LIB_TARGET "${HDF5_TEST_LIB_CORENAME}-static") | ||
| set (HDF5_CPP_LIB_TARGET "${HDF5_CPP_LIB_CORENAME}-static") | ||
| @@ -162,9 +163,24 @@ set (HDF5_F90_TEST_LIB_TARGET "${HDF5_F90_TEST_LIB_CORENAME}-static") | ||
| set (HDF5_F90_C_TEST_LIB_TARGET "${HDF5_F90_C_TEST_LIB_CORENAME}-static") | ||
| set (HDF5_HL_F90_LIB_TARGET "${HDF5_HL_F90_LIB_CORENAME}-static") | ||
| set (HDF5_HL_F90_C_LIB_TARGET "${HDF5_HL_F90_C_LIB_CORENAME}-static") | ||
| +else() | ||
| +set (HDF5_LIB_TARGET "${HDF5_LIB_CORENAME}-shared") | ||
| +set (HDF5_TEST_LIB_TARGET "${HDF5_TEST_LIB_CORENAME}-shared") | ||
| +set (HDF5_CPP_LIB_TARGET "${HDF5_CPP_LIB_CORENAME}-shared") | ||
| +set (HDF5_HL_LIB_TARGET "${HDF5_HL_LIB_CORENAME}-shared") | ||
| +set (HDF5_HL_CPP_LIB_TARGET "${HDF5_HL_CPP_LIB_CORENAME}-shared") | ||
| +set (HDF5_TOOLS_LIB_TARGET "${HDF5_TOOLS_LIB_CORENAME}-shared") | ||
| +set (HDF5_F90_LIB_TARGET "${HDF5_F90_LIB_CORENAME}-shared") | ||
| +set (HDF5_F90_C_LIB_TARGET "${HDF5_F90_C_LIB_CORENAME}-shared") | ||
| +set (HDF5_F90_TEST_LIB_TARGET "${HDF5_F90_TEST_LIB_CORENAME}-shared") | ||
| +set (HDF5_F90_C_TEST_LIB_TARGET "${HDF5_F90_C_TEST_LIB_CORENAME}-shared") | ||
| +set (HDF5_HL_F90_LIB_TARGET "${HDF5_HL_F90_LIB_CORENAME}-shared") | ||
| +set (HDF5_HL_F90_C_LIB_TARGET "${HDF5_HL_F90_C_LIB_CORENAME}-shared") | ||
| +endif() | ||
| set (HDF5_JAVA_JNI_LIB_TARGET "${HDF5_JAVA_JNI_LIB_CORENAME}") | ||
| set (HDF5_JAVA_HDF5_LIB_TARGET "${HDF5_JAVA_HDF5_LIB_CORENAME}") | ||
| set (HDF5_JAVA_TEST_LIB_TARGET "${HDF5_JAVA_TEST_LIB_CORENAME}") | ||
| + | ||
| set (HDF5_LIBSH_TARGET "${HDF5_LIB_CORENAME}-shared") | ||
| set (HDF5_TEST_LIBSH_TARGET "${HDF5_TEST_LIB_CORENAME}-shared") | ||
| set (HDF5_CPP_LIBSH_TARGET "${HDF5_CPP_LIB_CORENAME}-shared") |
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.
Uh oh!
There was an error while loading. Please reload this page.