summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-oe/classes/capnproto.bbclass8
-rw-r--r--meta-oe/recipes-devtools/capnproto/capnproto/0001-Don-t-check-usr-bin-content-from-cmake.patch43
-rw-r--r--meta-oe/recipes-devtools/capnproto/capnproto_1.0.2.bb3
3 files changed, 53 insertions, 1 deletions
diff --git a/meta-oe/classes/capnproto.bbclass b/meta-oe/classes/capnproto.bbclass
new file mode 100644
index 0000000000..a698f41c95
--- /dev/null
+++ b/meta-oe/classes/capnproto.bbclass
@@ -0,0 +1,8 @@
1# Inherit this class in your recipe to compile against
2# Cap'N Proto (capnproto) with CMake
3
4DEPENDS:append = " capnproto-native "
5DEPENDS:append:class-target = " capnproto "
6
7EXTRA_OECMAKE:append:class-target = " -DCAPNP_EXECUTABLE=${RECIPE_SYSROOT_NATIVE}${bindir}/capnp \
8 -DCAPNPC_CXX_EXECUTABLE=${RECIPE_SYSROOT_NATIVE}${bindir}/capnpc-c++ "
diff --git a/meta-oe/recipes-devtools/capnproto/capnproto/0001-Don-t-check-usr-bin-content-from-cmake.patch b/meta-oe/recipes-devtools/capnproto/capnproto/0001-Don-t-check-usr-bin-content-from-cmake.patch
new file mode 100644
index 0000000000..6447fadcf9
--- /dev/null
+++ b/meta-oe/recipes-devtools/capnproto/capnproto/0001-Don-t-check-usr-bin-content-from-cmake.patch
@@ -0,0 +1,43 @@
1From 43573472a62ff68ba6b1180d6551ef536471a99f Mon Sep 17 00:00:00 2001
2From: Gyorgy Sarvari <skandigraun@gmail.com>
3Date: Mon, 3 Feb 2025 11:52:01 +0100
4Subject: [PATCH] Don't install files in bindir
5
6This patch prevents the generated binary executables from being
7installed into the /usr/bin folder.
8
9By default, cmake installs these binaries into the /usr/bin folder,
10(e.g. binaries used to generate C++ source from the capnproto definition
11files) however with Yocto, when using the cross-compiled version of this
12application, the /usr/bin folder is not populated in the sysroot.
13The generated cmake file however tries to verify that these binaries
14exist, and since it cannot find them, it fails the build.
15
16But even in case these files would exist, they are not usable on the build
17machine, as these are cross-compiled for the target machine. When another
18recipe it built against the capnproto cmake package, the application can
19link against the cross-compiled libraries as expected, but for code
20generation the capnproto-native package's binaries need to be used.
21
22This patch is only applicable on the cross-compiled version of capnproto.
23
24Upstream-Status: Inappropriate [oe specific: see above message]
25
26Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com>
27---
28 c++/src/capnp/CMakeLists.txt | 2 --
29 1 file changed, 2 deletions(-)
30
31diff --git a/c++/src/capnp/CMakeLists.txt b/c++/src/capnp/CMakeLists.txt
32index 9980fde6..101a7091 100644
33--- a/src/capnp/CMakeLists.txt
34+++ b/src/capnp/CMakeLists.txt
35@@ -210,8 +210,6 @@ if(NOT CAPNP_LITE)
36 target_link_libraries(capnpc_capnp capnp kj)
37 set_target_properties(capnpc_capnp PROPERTIES OUTPUT_NAME capnpc-capnp)
38
39- install(TARGETS capnp_tool capnpc_cpp capnpc_capnp ${INSTALL_TARGETS_DEFAULT_ARGS})
40-
41 if(WIN32)
42 # On Windows platforms symlinks are not guaranteed to support. Also different version of CMake handle create_symlink in a different way.
43 # The most portable way in this case just copy the file.
diff --git a/meta-oe/recipes-devtools/capnproto/capnproto_1.0.2.bb b/meta-oe/recipes-devtools/capnproto/capnproto_1.0.2.bb
index daeeb975f2..6136ff20fb 100644
--- a/meta-oe/recipes-devtools/capnproto/capnproto_1.0.2.bb
+++ b/meta-oe/recipes-devtools/capnproto/capnproto_1.0.2.bb
@@ -5,7 +5,8 @@ SECTION = "console/tools"
5LICENSE = "MIT" 5LICENSE = "MIT"
6LIC_FILES_CHKSUM = "file://../LICENSE;md5=a05663ae6cca874123bf667a60dca8c9" 6LIC_FILES_CHKSUM = "file://../LICENSE;md5=a05663ae6cca874123bf667a60dca8c9"
7 7
8SRC_URI = "git://github.com/sandstorm-io/capnproto.git;branch=release-${PV};protocol=https" 8SRC_URI = "git://github.com/sandstorm-io/capnproto.git;branch=release-${PV};protocol=https \
9 file://0001-Don-t-check-usr-bin-content-from-cmake.patch"
9SRCREV = "1a0e12c0a3ba1f0dbbad45ddfef555166e0a14fc" 10SRCREV = "1a0e12c0a3ba1f0dbbad45ddfef555166e0a14fc"
10 11
11S = "${WORKDIR}/git/c++" 12S = "${WORKDIR}/git/c++"