summaryrefslogtreecommitdiffstats
path: root/config/gnu-warnings
Commit message (Collapse)AuthorAgeFilesLines
* Removes -Wimplicit-fallthrough=5 from the gcc warningsDana Robinson2020-10-221-1/+0
| | | | | | | | | | | | -Wimplicit-fallthrough=3 is added by -Wextra, which we already set. Bumping the warning level only changes how fall-through comments are parsed, with level 5 turning off fall-through comments entirely. This is unnecessary and results in having to do extra work to squash warnings when included external code uses fall-through. This change also adds /* FALLTHROUGH */ comments where H5_ATTR_FALLTHROUGH is used so compilers that don't use attributes but do respect fall-through comments don't raise spurious warnings.
* Merge remote-tracking branch 'hdffv/develop' into rebased-fprintf-experimentDavid Young2020-09-033-2/+3
|\
| * Removes unsuffixed float warningsDana Robinson2020-08-073-2/+3
| | | | | | | | These warnings can only be addressed with gnu extensions.
* | Promote format-string warnings to errors.David Young2020-07-071-1/+1
|/
* Revise gnu-*flags and cmake/HDF*CompilerFlags.cmake files to add warningLarry Knox2020-05-1823-47/+70
| | | | | | | flags for GCC compilers version 4.8 and above. Removed files from gnu-warnings that only apply to versions < 4.8. Consolidated warnings from versions < 4.8 that apply to versions >= 4.8 into the 4.8 warnings files.
* Moved -Woverlength-strings to the developer flags.Dana Robinson2020-04-261-0/+4
|
* TRILAB-244 separate CXX warnings and errors from CAllen Byrne2020-04-235-4/+76
|
* TRILAB-192 - cleanup edits and match CMake CXX to autotoolsAllen Byrne2020-04-131-0/+1
|
* Remove flag from gfort-general in gfort-5, add /EHsc to Win C++Allen Byrne2020-04-061-1/+0
|
* Update intel flagsAllen Byrne2020-04-061-0/+1
|
* Correct whitespace in flags, force list modeAllen Byrne2020-04-053-12/+12
|
* TRILAB-192 add c++ and fortran warnings build systems one fileAllen Byrne2020-04-059-0/+44
|
* Reorg commentsAllen Byrne2020-03-251-4/+22
|
* Correct warning flag formAllen Byrne2020-03-251-1/+1
|
* Because of tools macro, this needs to be a warningAllen Byrne2020-03-251-1/+3
|
* Fix Werror issues in JNI and toolsAllen Byrne2020-03-241-3/+1
|
* TRILAB-192 fix JNI shadow warningAllen Byrne2020-03-241-6/+1
|
* TRILAB-192 restrict extensive warnings to librariesAllen Byrne2020-03-241-34/+27
|
* TRILAB-192 Identify warnings that fail as errorsAllen Byrne2020-03-242-11/+72
|
* Move the GNU warnings configuration under config/gnu-warnings/ and trimDavid Young2020-03-1934-0/+172
the filename prefixes. Update config/gnu-flags to suit. I also made changes to config/cmake/HDFCompilerFlags.cmake, but I'm not sure they're correct.