From a98abd25dea2179f87ddc2f532e5416c15db89fd Mon Sep 17 00:00:00 2001 From: Gergely Szilvasy Date: Wed, 19 Oct 2022 08:16:30 -0700 Subject: [PATCH] bumping gtest to 1.12.1 Summary: Due to https://github.com/google/googletest/issues/3219 gtest doesn't compile with gcc 11 - Ubuntu 22.04 has GCC 11.2 currently. The fix was https://github.com/google/googletest/pull/3024 so I'm bumping gtest to latest. Differential Revision: D40512746 fbshipit-source-id: b938eec96f0cb6e13e20daab529f97527c8e31c0 --- tests/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index f5edf82d91..d03a91c95f 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -39,7 +39,7 @@ endif() include(FetchContent) FetchContent_Declare(googletest - URL "https://github.com/google/googletest/archive/release-1.10.0.tar.gz") + URL "https://github.com/google/googletest/archive/release-1.12.1.tar.gz") set(BUILD_GMOCK CACHE BOOL OFF) set(INSTALL_GTEST CACHE BOOL OFF) FetchContent_MakeAvailable(googletest)