-
-
Notifications
You must be signed in to change notification settings - Fork 261
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
Sync 1.14 branch with develop #3705
Merged
Merged
Conversation
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
* added cmake ieee flag for nagfor * generalized determining the nag compiler * fixing some misc. NAG warnings
* Address @jhendersonHDF review
…oup#3662) * added cmake ieee flag for nagfor * fixes gfortran -O2 and -O3, -fdefault-real-16 * fixed sync * updated release notes
Picked up by gcc 10 on skybridge. Probably spurious, but no harm in initializing it to a "bad" value.
* Adds a config/clang-fflags options file to support Flang * Corrects missing "-Wl," from linker options in the libtool wrappers when using Flang, the MPI Fortran compiler wrappers, and building the shared library. This would often result in unrecognized options like -soname. * Enable -nomp w/ Flang to avoid linking to the OpenMPI library. CMake can build the parallel, shared library w/ Fortran using AOCC and Flang, so no changes were needed for that build system. Fixes GitHub issues HDFGroup#3439, HDFGroup#1588, HDFGroup#366, HDFGroup#280
A strncpy call in a path construction call used the size of the src buffer instead of the dest buffer as the limit n. This was switched to use the dest size and properly terminate the string if truncation occurs.
This macro was an attempt to quiet warnings about release mode unused variables that only appear in asserts. It resolves to a void cast, which doesn't quiet warnings when an assignment has already taken place.
MPICH defines MPI_STATUSES_IGNORE (a pointer) to 1, which raises warnings w/ gcc. This is a known issue that the MPICH devs are not going to fix. See here: pmodels/mpich#5687 This fix suppresses those issues w/ gcc
The dtypes test could dereference a NULL pointer if a strdup call failed.
* Fix printf warnings in t_mpi The type of MPI_Offset varies with implementation. In MPICH, it's long, which raises warnings when we attempt to use long long format specifiers. Casting to long long fixes the warnings.
In the ros3 VFD, passing an empty string parameter to an internal API call could result in accessing the -1th element of a string. This would cause failures on big-endian systems like s390x. This parameter is now checked before writing to the string. Fixes GitHub HDFGroup#1168
A prior commit removed too many F suffixes. This restores the suffixes for float variables.
jhendersonHDF
added
Merge
Use this label when a PR is for a downstream merge
Priority - 0. Blocker ⛔
This MUST be merged for the release to happen
Component - C Library
Core C library issues (usually in the src directory)
Component - High-Level Library
Code in the hl directory
Component - Documentation
Doxygen, markdown, etc.
Component - Fortran
Fortran wrappers
labels
Oct 18, 2023
jhendersonHDF
added
Component - Parallel
Parallel HDF5 (NOT thread-safety)
Component - Testing
Code in test or testpar directories, GitHub workflows
Component - Build
CMake, Autotools
Type - Task
Actions that don't fit into any other type category
Branch - 1.14
Component - Misc
Anything else (CODEOWNERS, etc.)
labels
Oct 18, 2023
jhendersonHDF
requested review from
byrnHDF,
derobins,
brtnfld,
epourmal,
lrknox,
fortnern,
qkoziol,
vchoi-hdfgroup,
bmribler,
glennsong09 and
mattjala
as code owners
October 18, 2023 03:16
jhendersonHDF
commented
Oct 18, 2023
@@ -1186,7 +1186,7 @@ Java_hdf_hdf5lib_H5_H5AwriteVL(JNIEnv *env, jclass clss, jlong attr_id, jlong me | |||
UNUSED(clss); | |||
|
|||
if (NULL == buf) | |||
H5_NULL_ARGUMENT_ERROR(ENVONLY, "H5AwriteVL: write buffer is NULL"); | |||
H5_NULL_ARGUMENT_ERROR(ENVONLY, "H5Awrite: write buffer is NULL"); |
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.
This is actually the wrong way to go since the function is called H5AwriteVL, but there are several other messages in develop that need updating, so this just makes the two branches consistent for now
jhendersonHDF
force-pushed
the
1_14_dev_sync
branch
from
October 18, 2023 03:43
9ec3dcf
to
0e3d667
Compare
derobins
approved these changes
Oct 18, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Component - Build
CMake, Autotools
Component - C Library
Core C library issues (usually in the src directory)
Component - Documentation
Doxygen, markdown, etc.
Component - Fortran
Fortran wrappers
Component - High-Level Library
Code in the hl directory
Component - Misc
Anything else (CODEOWNERS, etc.)
Component - Parallel
Parallel HDF5 (NOT thread-safety)
Component - Testing
Code in test or testpar directories, GitHub workflows
Merge
Use this label when a PR is for a downstream merge
Priority - 0. Blocker ⛔
This MUST be merged for the release to happen
Type - Task
Actions that don't fit into any other type category
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.
No description provided.