From 68239b76f139e44d24f3949383e3fd4bf389e1c9 Mon Sep 17 00:00:00 2001 From: Brad Smith Date: Fri, 27 Jun 2025 16:56:17 -0400 Subject: [PATCH] [gtest] Fix building on OpenBSD/sparc64 (#145225) Cherry pick a patch from 1.15.0 Add missing include for raise(3) https://github.com/google/googletest/commit/7f036c5563af7d0329f20e8bb42effb04629f0c0 --- third-party/unittest/googletest/src/gtest.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/third-party/unittest/googletest/src/gtest.cc b/third-party/unittest/googletest/src/gtest.cc index 30a5cc3f83a7..37d380a78983 100644 --- a/third-party/unittest/googletest/src/gtest.cc +++ b/third-party/unittest/googletest/src/gtest.cc @@ -43,6 +43,7 @@ #include #include // NOLINT #include +#include #include #include #include