From b08b07f6115a146fd7c21d6b0c8e976995627fd6 Mon Sep 17 00:00:00 2001 From: Esun Kim Date: Thu, 19 Oct 2023 15:41:53 -0700 Subject: [PATCH] [Doc] Updated gRPC C++ supported platform (#34747) - Added ARM64 to MacOS to be clear about the recent Apple Silicon support. - Removed x86 from MacOS as x86 is no longer used for Apple. - Changed ARM to ARM64 for Linux as Foundational-cxx-support only support ARM64 although gRPC is still working on ARM32. --- src/cpp/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/cpp/README.md b/src/cpp/README.md index 1b8bf681c84..780528b9c5e 100755 --- a/src/cpp/README.md +++ b/src/cpp/README.md @@ -30,11 +30,11 @@ Therefore, gRPC supports several major build systems, which should satisfy most | Operating System | Architectures | Versions | Support Level | |------------------|---------------|----------|---------------| -| Linux - Debian, Ubuntu, CentOS | x86, x64 | clang 6+, GCC 7.3+ | Officially Supported | +| Linux - Debian, Ubuntu, CentOS | x86, x64 | clang 7+, GCC 7.3+ | Officially Supported | | Windows 10+ | x86, x64 | Visual Studio 2019+ | Officially Supported | -| MacOS | x86, x64 | XCode 12+ | Officially Supported | -| Linux - Others | x86, x64 | clang 6+, GCC 7.3+ | Best Effort | -| Linux | ARM | | Best Effort | +| MacOS | x64, ARM64 | XCode 12+ | Officially Supported | +| Linux - Others | x86, x64 | clang 7+, GCC 7.3+ | Best Effort | +| Linux | ARM64 | | Best Effort | | iOS | | | Best Effort | | Android | | | Best Effort | | AIX | | | Community Supported |