diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2021-03-24 02:13:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-24 02:13:57 (GMT) |
commit | 1f3f7fe3aedf3d207d7bfa1b2870e87278378ad8 (patch) | |
tree | ff48216a6dce48120aa65326316746f919b60c76 /release_docs | |
parent | 69f3cde9365a1190f624586e7e9736b7b4df55f1 (diff) | |
download | hdf5-1f3f7fe3aedf3d207d7bfa1b2870e87278378ad8.zip hdf5-1f3f7fe3aedf3d207d7bfa1b2870e87278378ad8.tar.gz hdf5-1f3f7fe3aedf3d207d7bfa1b2870e87278378ad8.tar.bz2 |
Removes support for pre-2015 Visual Studio (#496)
* Committing clang-format changes
* Removes work-around code for pre-2015 Visual Studio
HDF5 no longer provides an implementation for:
* <inttypes.h>
* snprintf and vsnprintf
* llround(f), lround(f), round(f)
* strtoll and strtoull
* va_copy
* struct timespec
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'release_docs')
-rw-r--r-- | release_docs/RELEASE.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 2af0273..8b6f488 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -49,6 +49,20 @@ New Features Configuration: ------------- + - Removal of pre-VS2015 work-arounds + + HDF5 now requires Visual Studio 2015 or greater, so old work-around + code and definitions have been removed, including: + + * <inttypes.h> + * snprintf and vsnprintf + * llround, llroundf, lround, lroundf, round, roundf + * strtoll and strtoull + * va_copy + * struct timespec + + (DER - 2021/03/22) + - On macOS, Universal Binaries can now be built, allowing native execution on both Intel and Apple Silicon (ARM) based Macs. |