diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 07d8b9c2d..55a023e97 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -305,7 +305,6 @@ jobs: if: ${{ runner.os == 'Linux' && steps.cache.outputs.cache-hit != 'true' }} run: | # Install deps - sudo apt remove needrestart sudo apt-get update sudo apt-get install valgrind sudo apt-get autoremove diff --git a/CMakeLists.txt b/CMakeLists.txt index 311ef42c7..2298a5dde 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -299,7 +299,7 @@ endif() # Add appropriate flags for GCC if (LLVM_COMPILER_IS_GCC_COMPATIBLE) - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-common -Woverloaded-virtual -Wcast-qual -fno-strict-aliasing -pedantic -Wno-long-long -Wall -W -Wno-unused-parameter -Wwrite-strings") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-common -Woverloaded-virtual -Wcast-qual -fno-strict-aliasing -pedantic -Wno-long-long -Wall -W -Wno-unused-parameter -Wwrite-strings -Wno-ignored-attributes") endif () # Fixes "C++ exception handler used, but unwind semantics are not enabled" warning Windows