From 5b19b1dcd877521f88e52552626ab207cf456875 Mon Sep 17 00:00:00 2001 From: G-Ragghianti Date: Mon, 18 Mar 2024 12:12:35 -0400 Subject: [PATCH] Reverting --- .github/workflows/configure.sh | 2 +- .github/workflows/setup_env.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/configure.sh b/.github/workflows/configure.sh index 6669f7b37..76e41c418 100755 --- a/.github/workflows/configure.sh +++ b/.github/workflows/configure.sh @@ -45,7 +45,7 @@ elif [ "${maker}" = "cmake" ]; then # Intel icpx needs -Wno-unused-command-line-argument to avoid # warnings: 'linker' input unused, which prevent CMake finding OpenMP. cmake -Dcolor=no \ - -DCMAKE_CXX_FLAGS="-Werror -Wno-error=deprecated-declarations -Wno-unused-command-line-argument" \ + -DCMAKE_CXX_FLAGS="-Werror -Wno-unused-command-line-argument" \ -DCMAKE_INSTALL_PREFIX=${top}/install \ -Dgpu_backend=${gpu_backend} \ -Dc_api=1 -Dfortran_api=1 .. \ diff --git a/.github/workflows/setup_env.sh b/.github/workflows/setup_env.sh index 98e04a378..ca71d673c 100755 --- a/.github/workflows/setup_env.sh +++ b/.github/workflows/setup_env.sh @@ -53,7 +53,7 @@ export color=no # For simplicity, create make.inc regardless of ${maker} cat > make.inc << END -CXXFLAGS = -Werror -Wno-error=deprecated-declarations -Dslate_omp_default_none='default(none)' +CXXFLAGS = -Werror -Dslate_omp_default_none='default(none)' CXX = mpicxx CC = mpicc FC = mpif90