diff options
Diffstat (limited to 'meta-oe/recipes-extended/etcd/etcd-cpp-apiv3')
3 files changed, 60 insertions, 68 deletions
diff --git a/meta-oe/recipes-extended/etcd/etcd-cpp-apiv3/0001-Replacing-GPR_ASSERT-with-c-assert.patch b/meta-oe/recipes-extended/etcd/etcd-cpp-apiv3/0001-Replacing-GPR_ASSERT-with-c-assert.patch new file mode 100644 index 0000000000..87000b663d --- /dev/null +++ b/meta-oe/recipes-extended/etcd/etcd-cpp-apiv3/0001-Replacing-GPR_ASSERT-with-c-assert.patch | |||
@@ -0,0 +1,33 @@ | |||
1 | From aeb34f58782fb6d06aea4f5cbeccb23a0224466e Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Wed, 4 Sep 2024 14:54:42 -0700 | ||
4 | Subject: [PATCH] Replacing GPR_ASSERT with c assert | ||
5 | |||
6 | Latest GRPC >= 2.66 has dropped GRPC_ASSERT macro [1] | ||
7 | |||
8 | [1] https://github.com/grpc/grpc/commit/0e23c2259da967a037e839e80cafd62bc6f9f68e | ||
9 | |||
10 | Upstream-Status: Submitted [https://github.com/etcd-cpp-apiv3/etcd-cpp-apiv3/pull/281] | ||
11 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
12 | --- | ||
13 | src/v3/Action.cpp | 9 +++++++++ | ||
14 | 1 file changed, 9 insertions(+) | ||
15 | |||
16 | --- a/src/v3/Action.cpp | ||
17 | +++ b/src/v3/Action.cpp | ||
18 | @@ -2,6 +2,15 @@ | ||
19 | #include <grpc/support/log.h> | ||
20 | #include <grpcpp/support/status.h> | ||
21 | #include "etcd/v3/action_constants.hpp" | ||
22 | +#include <cstdlib> | ||
23 | + | ||
24 | +#ifndef GPR_ASSERT | ||
25 | +#define GPR_ASSERT(x) \ | ||
26 | + if (!(x)) { \ | ||
27 | + fprintf(stderr, "%s:%d assert failed\n", __FILE__, __LINE__); \ | ||
28 | + abort(); \ | ||
29 | +} | ||
30 | +#endif | ||
31 | |||
32 | etcdv3::Action::Action(etcdv3::ActionParameters const& params) { | ||
33 | parameters = params; | ||
diff --git a/meta-oe/recipes-extended/etcd/etcd-cpp-apiv3/0001-cmake-fix-when-cross-compiling.patch b/meta-oe/recipes-extended/etcd/etcd-cpp-apiv3/0001-cmake-fix-when-cross-compiling.patch deleted file mode 100644 index ce12d4270a..0000000000 --- a/meta-oe/recipes-extended/etcd/etcd-cpp-apiv3/0001-cmake-fix-when-cross-compiling.patch +++ /dev/null | |||
@@ -1,68 +0,0 @@ | |||
1 | From cb79329010d73e36ce64830914005f1c17f8f53c Mon Sep 17 00:00:00 2001 | ||
2 | From: =?UTF-8?q?Cl=C3=A9ment=20P=C3=A9ron?= <peron.clem@gmail.com> | ||
3 | Date: Sat, 23 Sep 2023 11:32:18 +0200 | ||
4 | Subject: [PATCH] cmake: fix when cross compiling | ||
5 | MIME-Version: 1.0 | ||
6 | Content-Type: text/plain; charset=UTF-8 | ||
7 | Content-Transfer-Encoding: 8bit | ||
8 | |||
9 | In order to generate protobuf files CMake need to use the protoc | ||
10 | and grpc-cpp-plugin compiled for the host architecture. | ||
11 | |||
12 | Unfortunately, the protoc and grpc-cpp-plugin in the gRPC CMake | ||
13 | configuration file are the one for the target architecture. | ||
14 | |||
15 | Fix this by properly finding the correct executable when | ||
16 | CMake is cross compiling. | ||
17 | |||
18 | Signed-off-by: Clément Péron <peron.clem@gmail.com> | ||
19 | --- | ||
20 | Upstream-Status: Pending | ||
21 | |||
22 | CMakeLists.txt | 28 ++++++++++++++++++++++++++-- | ||
23 | 1 file changed, 26 insertions(+), 2 deletions(-) | ||
24 | |||
25 | diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
26 | index 5aa1310..80ebad2 100644 | ||
27 | --- a/CMakeLists.txt | ||
28 | +++ b/CMakeLists.txt | ||
29 | @@ -120,10 +120,34 @@ if(Protobuf_PROTOC_EXECUTABLE) | ||
30 | endif() | ||
31 | endif() | ||
32 | |||
33 | +# When cross compiling we look for the native protoc compiler | ||
34 | +# overwrite protobuf::protoc with the proper protoc | ||
35 | +if(CMAKE_CROSSCOMPILING) | ||
36 | + find_program(Protobuf_PROTOC_EXECUTABLE REQUIRED NAMES protoc) | ||
37 | + if(NOT TARGET protobuf::protoc) | ||
38 | + add_executable(protobuf::protoc IMPORTED) | ||
39 | + endif() | ||
40 | + set_target_properties(protobuf::protoc PROPERTIES | ||
41 | + IMPORTED_LOCATION "${Protobuf_PROTOC_EXECUTABLE}") | ||
42 | +endif() | ||
43 | + | ||
44 | find_package(gRPC QUIET) | ||
45 | -if(gRPC_FOUND AND TARGET gRPC::grpc AND TARGET gRPC::grpc_cpp_plugin) | ||
46 | +if(gRPC_FOUND AND TARGET gRPC::grpc) | ||
47 | + # When cross compiling we look for the native grpc_cpp_plugin | ||
48 | + if(CMAKE_CROSSCOMPILING) | ||
49 | + find_program(GRPC_CPP_PLUGIN REQUIRED NAMES grpc_cpp_plugin) | ||
50 | + if(NOT TARGET gRPC::grpc_cpp_plugin) | ||
51 | + add_executable(gRPC::grpc_cpp_plugin IMPORTED) | ||
52 | + endif() | ||
53 | + set_target_properties(gRPC::grpc_cpp_plugin PROPERTIES | ||
54 | + IMPORTED_LOCATION "${GRPC_CPP_PLUGIN}") | ||
55 | + elseif(TARGET gRPC::grpc_cpp_plugin) | ||
56 | + get_target_property(GRPC_CPP_PLUGIN gRPC::grpc_cpp_plugin LOCATION) | ||
57 | + else() | ||
58 | + message(FATAL_ERROR "Found gRPC but no gRPC CPP plugin defined") | ||
59 | + endif() | ||
60 | + | ||
61 | set(GRPC_LIBRARIES gRPC::gpr gRPC::grpc gRPC::grpc++) | ||
62 | - get_target_property(GRPC_CPP_PLUGIN gRPC::grpc_cpp_plugin LOCATION) | ||
63 | get_target_property(GRPC_INCLUDE_DIR gRPC::grpc INTERFACE_INCLUDE_DIRECTORIES) | ||
64 | else() | ||
65 | include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/FindGRPC.cmake) | ||
66 | -- | ||
67 | 2.39.3 (Apple Git-145) | ||
68 | |||
diff --git a/meta-oe/recipes-extended/etcd/etcd-cpp-apiv3/0001-include-stdint.h-for-int64_t-types.patch b/meta-oe/recipes-extended/etcd/etcd-cpp-apiv3/0001-include-stdint.h-for-int64_t-types.patch new file mode 100644 index 0000000000..373e146b98 --- /dev/null +++ b/meta-oe/recipes-extended/etcd/etcd-cpp-apiv3/0001-include-stdint.h-for-int64_t-types.patch | |||
@@ -0,0 +1,27 @@ | |||
1 | From 44f4254fe96c43437400f94a8a2800175ddf3279 Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Mon, 20 May 2024 21:00:48 -0700 | ||
4 | Subject: [PATCH] include stdint.h for int64_t types | ||
5 | |||
6 | This is exposed when compiling for musl platforms where this | ||
7 | header is not included indirectly. | ||
8 | |||
9 | Upstream-Status: Submitted [https://github.com/etcd-cpp-apiv3/etcd-cpp-apiv3/pull/270] | ||
10 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
11 | --- | ||
12 | src/Value.cpp | 1 + | ||
13 | 1 file changed, 1 insertion(+) | ||
14 | |||
15 | diff --git a/src/Value.cpp b/src/Value.cpp | ||
16 | index cbda697..d6f2c9c 100644 | ||
17 | --- a/src/Value.cpp | ||
18 | +++ b/src/Value.cpp | ||
19 | @@ -1,4 +1,5 @@ | ||
20 | #include <iomanip> | ||
21 | +#include <cstdint> | ||
22 | |||
23 | #include "etcd/Value.hpp" | ||
24 | #include "etcd/v3/KeyValue.hpp" | ||
25 | -- | ||
26 | 2.45.1 | ||
27 | |||