diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2021-02-08 23:23:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-08 23:23:09 (GMT) |
commit | bccf5b5c0864896a077f5d6ef43ec1410151e693 (patch) | |
tree | 3b56a298a33ebb410f88913ef0be3d652890c953 /config/gnu-cxxflags | |
parent | aa95b70f6da1852f136e36954814be0fa4b02fa2 (diff) | |
download | hdf5-bccf5b5c0864896a077f5d6ef43ec1410151e693.zip hdf5-bccf5b5c0864896a077f5d6ef43ec1410151e693.tar.gz hdf5-bccf5b5c0864896a077f5d6ef43ec1410151e693.tar.bz2 |
Add option to control gcc 10 warnings diagnostics (#321)
* OESS-98 convert plugin option to FetchContent, add tests
* Fixes for pkcfg files because of plugin option
* OESS-98 fix tools test for plugins
* Keep doxygen comments under 100 chars long - format hint
* Whitespace
* HDFFV-11144 - Reclassify CMake messages
* HDFFV-11099/11100 added help text
* Reworked switch statement to compare string instead
* Fix typo
* Update CDash mode
* Correct name of threadsafe
* Correct option name
* Undo accidental commit
* Note LLVM 10 to 11 format default changes
* Update format plugin
* Undo clang-format version 11 changes
* One more correction
* Update supported platforms
* Revert whitespace changes
* Correct whitespace
* Changes from PR#3
* HDFFV-11213 added option to control gcc10 warnings diagnostics
Diffstat (limited to 'config/gnu-cxxflags')
-rw-r--r-- | config/gnu-cxxflags | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/config/gnu-cxxflags b/config/gnu-cxxflags index 0b48bdf..6189db6 100644 --- a/config/gnu-cxxflags +++ b/config/gnu-cxxflags @@ -144,6 +144,15 @@ if test "X-g++" = "X-$cxx_vendor"; then DEBUG_CXXFLAGS="-ftrapv -fno-common" fi + ######################## + # Enhanced Diagnostics # + ######################## + + if test $cc_vers_major -ge 10; then + NO_DIAGS_CXXFLAGS="-fdiagnostics-urls=never -fno-diagnostics-color" + fi + DIAGS_CXXFLAGS= + ########### # Symbols # ########### |