From d93855cb1fba3966b914d8585175b75864cb73d9 Mon Sep 17 00:00:00 2001 From: jeanmon Date: Wed, 7 Feb 2024 16:40:19 +0000 Subject: [PATCH] Using gtest version 1.13 instead of 1.14 --- barretenberg/cpp/cmake/gtest.cmake | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/barretenberg/cpp/cmake/gtest.cmake b/barretenberg/cpp/cmake/gtest.cmake index 7fe4c2f67c3..8f451b6f135 100644 --- a/barretenberg/cpp/cmake/gtest.cmake +++ b/barretenberg/cpp/cmake/gtest.cmake @@ -4,8 +4,7 @@ include(FetchContent) FetchContent_Declare( GTest GIT_REPOSITORY https://github.com/google/googletest.git - # Version 1.12.1 is not compatible with WASI-SDK 12 - GIT_TAG v1.14.0 + GIT_TAG v1.13.0 #v1.14.0 does not compile with gcc (compiler bug: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105329) FIND_PACKAGE_ARGS )