Skip to content

Commit 5677db8

Browse files
authored
Upgrade to grpc 150 and c++14 for cmake build (#10651)
* Upgrade grpc to 150 and C++ to 14 on Cocoapods and SPM * Minor fixes * Upgrade to grpc 150 and c++14 for cmake build * Add sha256 * Revert "Minor fixes" This reverts commit 143a3ca. * Revert "Upgrade grpc to 150 and C++ to 14 on Cocoapods and SPM" This reverts commit 8205984.
1 parent a446367 commit 5677db8

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

cmake/compiler_setup.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414

1515
# C++ Compiler setup
1616

17-
# We use C++11
18-
set(CMAKE_CXX_STANDARD 11)
17+
# We use C++14
18+
set(CMAKE_CXX_STANDARD 14)
1919
set(CMAKE_CXX_STANDARD_REQUIRED ON)
2020
set(CMAKE_CXX_EXTENSIONS OFF)
2121

cmake/external/abseil-cpp.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414

1515
include(ExternalProject)
1616

17-
set(version 20211102.0)
17+
set(version 20220623.0)
1818

1919
ExternalProject_Add(
2020
abseil-cpp
2121

2222
DOWNLOAD_DIR ${FIREBASE_DOWNLOAD_DIR}
2323
DOWNLOAD_NAME abseil-cpp-${version}.tar.gz
2424
URL https://github.com/abseil/abseil-cpp/archive/${version}.tar.gz
25-
URL_HASH SHA256=dcf71b9cba8dc0ca9940c4b316a0c796be8fab42b070bb6b7cab62b48f0e66c4
25+
URL_HASH SHA256=4208129b49006089ba1d6710845a45e31c59b0ab6bff9e5788a87f55c5abd602
2626

2727
PREFIX ${PROJECT_BINARY_DIR}
2828

cmake/external/grpc.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ if(TARGET grpc)
1818
return()
1919
endif()
2020

21-
set(version 1.44.0)
21+
set(version 1.50.0)
2222

2323
ExternalProject_Add(
2424
grpc
2525

2626
DOWNLOAD_DIR ${FIREBASE_DOWNLOAD_DIR}
2727
DOWNLOAD_NAME grpc-${version}.tar.gz
2828
URL https://github.com/grpc/grpc/archive/v${version}.tar.gz
29-
URL_HASH SHA256=8c05641b9f91cbc92f51cc4a5b3a226788d7a63f20af4ca7aaca50d92cc94a0d
29+
URL_HASH SHA256=76900ab068da86378395a8e125b5cc43dfae671e09ff6462ddfef18676e2165a
3030

3131
PREFIX ${PROJECT_BINARY_DIR}
3232
SOURCE_DIR ${PROJECT_BINARY_DIR}/src/grpc

0 commit comments

Comments
 (0)