Skip to content

Commit

Permalink
Ignore gcc10 warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Chuck Atkins committed Aug 7, 2020
1 parent 3bbbf9d commit 396dc7d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CTestCustom.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ list(APPEND CTEST_CUSTOM_WARNING_EXCEPTION
"warning: Using '.*' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking"
"PGC.*compilation completed with warnings"
"Warning: stand-alone `data16' prefix"
"Warning: Type mismatch between actual argument.*"
"Warning: Rank mismatch between actual argument.*"
)
list(APPEND CTEST_CUSTOM_COVERAGE_EXCLUDE
".*/thirdparty/.*"
Expand Down
3 changes: 3 additions & 0 deletions scripts/ci/cmake/ci-debian-sid-openmpi.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ execute_process(
OUTPUT_STRIP_TRAILING_WHITESPACE
)

set(ENV CFLAGS "-Wno-deprecated -Wno-deprecated-declarations")
set(ENV CXXFLAGS "-Wno-deprecated -Wno-deprecated-declarations")

set(dashboard_cache "
ADIOS2_USE_EXTERNAL_DEPENDENCIES:BOOL=ON
ADIOS2_USE_EXTERNAL_EVPATH:BOOL=OFF
Expand Down
3 changes: 3 additions & 0 deletions scripts/ci/cmake/ci-debian-sid.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ execute_process(
OUTPUT_STRIP_TRAILING_WHITESPACE
)

set(ENV{CFLAGS} "-Wno-deprecated -Wno-deprecated-declarations")
set(ENV{CXXFLAGS} "-Wno-deprecated -Wno-deprecated-declarations")

set(dashboard_cache "
ADIOS2_USE_EXTERNAL_DEPENDENCIES:BOOL=ON
ADIOS2_USE_EXTERNAL_EVPATH:BOOL=OFF
Expand Down

0 comments on commit 396dc7d

Please sign in to comment.