From 5a20630f4ea69c1aa215996b4a14e69865fe6de9 Mon Sep 17 00:00:00 2001 From: Keith Winstein Date: Wed, 30 Nov 2022 12:50:19 -0800 Subject: Silence gtest and uvwasi warnings on GCC 11 (#2082) Required to pass CI on ubuntu-22.04 runners which are phasing in for "ubuntu-latest" workflows on GitHub. --- CMakeLists.txt | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 12ba93d9..d374b54b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -534,6 +534,10 @@ if (BUILD_TOOLS) add_definitions(-DWITH_WASI) set(INTERP_LIBS uvwasi_a) set(EXTRA_INTERP_SRC src/interp/interp-wasi.cc) + + if (COMPILER_IS_GNU) + target_compile_options(uv_a PRIVATE "-Wno-sign-compare") + endif () endif() # wasm-interp @@ -618,6 +622,10 @@ if (BUILD_TESTS) add_library(gtest_main STATIC third_party/gtest/googletest/src/gtest_main.cc ) + + if (COMPILER_IS_GNU) + target_compile_options(gtest PRIVATE "-Wno-maybe-uninitialized") + endif () endif () # hexfloat-test -- cgit v1.2.3