diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2020-11-25 15:26:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-25 15:26:35 (GMT) |
commit | ffcb3542377c62cf972ff683c101e7268332f8a0 (patch) | |
tree | 13169e6a49d7e44298203afa99028b7efb791d29 /release_docs | |
parent | 7b9c5e124ba8e5ca4a44fa57e90f291b043a0eb2 (diff) | |
download | hdf5-ffcb3542377c62cf972ff683c101e7268332f8a0.zip hdf5-ffcb3542377c62cf972ff683c101e7268332f8a0.tar.gz hdf5-ffcb3542377c62cf972ff683c101e7268332f8a0.tar.bz2 |
Minor/solaris gcc fix (#126)
* Adds gnu99 as the standard when building with gcc on Solaris
* Adds a note to RELEASE.txt and improves comments
For Solaris + gcc fix (HDFFV-11191)
Diffstat (limited to 'release_docs')
-rw-r--r-- | release_docs/RELEASE.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 67fbe51..690635a 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -47,6 +47,19 @@ New Features Configuration: ------------- + - Fixed POSIX problems when building w/ gcc on Solaris + + When building on Solaris using gcc, the POSIX symbols were not + being set correctly, which could lead to issues like clock_gettime() + not being found. + + The standard is now set to gnu99 when building with gcc on Solaris, + which allows POSIX things to be #defined and linked correctly. This + differs slightly from the gcc norm, where we set the standard to c99 + and manually set POSIX #define symbols. + + (DER - 2020/11/25, HDFFV-11191) + - Added a configure-time option to consider certain compiler warnings as errors |