diff options
-rw-r--r-- | meta-oe/recipes-devtools/grpc/grpc/0002-cmake-fix-cross-compilation-with-gRPC_BUILD_GRPC_CPP.patch | 55 | ||||
-rw-r--r-- | meta-oe/recipes-devtools/grpc/grpc_1.38.1.bb | 1 |
2 files changed, 56 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/grpc/grpc/0002-cmake-fix-cross-compilation-with-gRPC_BUILD_GRPC_CPP.patch b/meta-oe/recipes-devtools/grpc/grpc/0002-cmake-fix-cross-compilation-with-gRPC_BUILD_GRPC_CPP.patch new file mode 100644 index 0000000000..ce660f5cc1 --- /dev/null +++ b/meta-oe/recipes-devtools/grpc/grpc/0002-cmake-fix-cross-compilation-with-gRPC_BUILD_GRPC_CPP.patch | |||
@@ -0,0 +1,55 @@ | |||
1 | From 83a66aa45d63d79cbccc47a65998723a7d2d7637 Mon Sep 17 00:00:00 2001 | ||
2 | From: Thomas De Schampheleire <patrickdepinguin@gmail.com> | ||
3 | Date: Wed, 23 Jun 2021 14:22:59 +0200 | ||
4 | Subject: [PATCH] cmake: fix cross-compilation with | ||
5 | gRPC_BUILD_GRPC_CPP_PLUGIN=OFF (#26292) | ||
6 | |||
7 | * cmake: fix cross-compilation with gRPC_BUILD_GRPC_CPP_PLUGIN=OFF | ||
8 | |||
9 | When cross-compiling gRPC, a _native_ version of 'grpc_cpp_plugin' is | ||
10 | searched in the environment. For most use cases, a _cross_ version of this | ||
11 | file is not needed and gRPC_BUILD_GRPC_CPP_PLUGIN can be set to OFF. | ||
12 | |||
13 | However, when cross-building with -DgRPC_BUILD_GRPC_CPP_PLUGIN=OFF, there | ||
14 | are some build errors, for example: | ||
15 | |||
16 | make[3]: *** No rule to make target 'grpc_cpp_plugin', needed by 'gens/src/proto/grpc/reflection/v1alpha/reflection.grpc.pb.cc'. Stop. | ||
17 | |||
18 | This is because there is still a hard dependency on 'grpc_cpp_plugin' for | ||
19 | these targets, not taking into account the cross-compilation case. | ||
20 | |||
21 | Fix by depending on the variable gRPC_CPP_PLUGIN, which is set correctly for | ||
22 | either cross or native case. | ||
23 | |||
24 | * regenerate projects | ||
25 | --- | ||
26 | CMakeLists.txt | 2 +- | ||
27 | templates/CMakeLists.txt.template | 2 +- | ||
28 | 2 files changed, 2 insertions(+), 2 deletions(-) | ||
29 | |||
30 | diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
31 | index eeaf0b43c7..c60a64917a 100644 | ||
32 | --- a/CMakeLists.txt | ||
33 | +++ b/CMakeLists.txt | ||
34 | @@ -319,7 +319,7 @@ function(protobuf_generate_grpc_cpp) | ||
35 | --plugin=protoc-gen-grpc=${_gRPC_CPP_PLUGIN} | ||
36 | ${_protobuf_include_path} | ||
37 | ${REL_FIL} | ||
38 | - DEPENDS ${ABS_FIL} ${_gRPC_PROTOBUF_PROTOC} grpc_cpp_plugin | ||
39 | + DEPENDS ${ABS_FIL} ${_gRPC_PROTOBUF_PROTOC} ${_gRPC_CPP_PLUGIN} | ||
40 | WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} | ||
41 | COMMENT "Running gRPC C++ protocol buffer compiler on ${FIL}" | ||
42 | VERBATIM) | ||
43 | diff --git a/templates/CMakeLists.txt.template b/templates/CMakeLists.txt.template | ||
44 | index cef2534cbd..f0afe5108e 100644 | ||
45 | --- a/templates/CMakeLists.txt.template | ||
46 | +++ b/templates/CMakeLists.txt.template | ||
47 | @@ -389,7 +389,7 @@ | ||
48 | --plugin=protoc-gen-grpc=<%text>${_gRPC_CPP_PLUGIN}</%text> | ||
49 | <%text>${_protobuf_include_path}</%text> | ||
50 | <%text>${REL_FIL}</%text> | ||
51 | - DEPENDS <%text>${ABS_FIL}</%text> <%text>${_gRPC_PROTOBUF_PROTOC}</%text> grpc_cpp_plugin | ||
52 | + DEPENDS <%text>${ABS_FIL}</%text> <%text>${_gRPC_PROTOBUF_PROTOC}</%text> <%text>${_gRPC_CPP_PLUGIN}</%text> | ||
53 | WORKING_DIRECTORY <%text>${CMAKE_CURRENT_SOURCE_DIR}</%text> | ||
54 | COMMENT "Running gRPC C++ protocol buffer compiler on <%text>${FIL}</%text>" | ||
55 | VERBATIM) | ||
diff --git a/meta-oe/recipes-devtools/grpc/grpc_1.38.1.bb b/meta-oe/recipes-devtools/grpc/grpc_1.38.1.bb index e2b86dad13..dfb44b819f 100644 --- a/meta-oe/recipes-devtools/grpc/grpc_1.38.1.bb +++ b/meta-oe/recipes-devtools/grpc/grpc_1.38.1.bb | |||
@@ -23,6 +23,7 @@ S = "${WORKDIR}/git" | |||
23 | SRCREV_grpc = "96b73272eadc01afb5fb45b92b408c47e4387274" | 23 | SRCREV_grpc = "96b73272eadc01afb5fb45b92b408c47e4387274" |
24 | BRANCH = "v1.38.x" | 24 | BRANCH = "v1.38.x" |
25 | SRC_URI = "git://github.com/grpc/grpc.git;protocol=https;name=grpc;branch=${BRANCH} \ | 25 | SRC_URI = "git://github.com/grpc/grpc.git;protocol=https;name=grpc;branch=${BRANCH} \ |
26 | file://0002-cmake-fix-cross-compilation-with-gRPC_BUILD_GRPC_CPP.patch \ | ||
26 | " | 27 | " |
27 | # Fixes build with older compilers 4.8 especially on ubuntu 14.04 | 28 | # Fixes build with older compilers 4.8 especially on ubuntu 14.04 |
28 | CXXFLAGS:append:class-native = " -Wl,--no-as-needed" | 29 | CXXFLAGS:append:class-native = " -Wl,--no-as-needed" |