* [oe][meta-oe][dunfell][PATCH] flatbuffers: adapt for cross-compilation environments
@ 2022-11-17 11:51 Bhabu Bindu
2022-11-17 14:41 ` akuster808
0 siblings, 1 reply; 2+ messages in thread
From: Bhabu Bindu @ 2022-11-17 11:51 UTC (permalink / raw)
To: openembedded-devel, bindudaniel1996
Cc: Ivan.Stepic, nisha.m.parrakat, Bhabu Bindu
From: Ivan Stepic <Ivan.Stepic@bmw.de>
Flatbuffers contains a library and a schema compiler. The package
contains cmake files to discover the libraries and the compiler tool.
Currently, all of these cmake files are installed into the target
sysroot. However, the compiler utility isn't installed into the sysroot
(as it is not runnable on the build machine).
When an application that depends on flatbuffers gets built, it uses
flatbuffers' exported cmake targets to configure the project. One of the
exported targets is FlatcTarget.cmake which expects to see flatc binary
in /usr/bin of the sysroot. Since binaries for target don't end up in
target sysroot, cmake configuration fails.
This patch addresses this problem of flatbuffers' build infrastructure
in cross-compiling environments. By removing FlatcTarget.cmake for
target builds from the sysroot we essentially skip this step of
flatbuffers' configuration.
Signed-off-by: Ivan Stepic <Ivan.Stepic@bmw.de>
Signed-off-by: Bhabu Bindu <bhabu.bindu@kpit.com>
---
meta-oe/recipes-devtools/flatbuffers/flatbuffers_1.12.0.bb | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/meta-oe/recipes-devtools/flatbuffers/flatbuffers_1.12.0.bb b/meta-oe/recipes-devtools/flatbuffers/flatbuffers_1.12.0.bb
index 859d6a0b0..c4f3594f3 100644
--- a/meta-oe/recipes-devtools/flatbuffers/flatbuffers_1.12.0.bb
+++ b/meta-oe/recipes-devtools/flatbuffers/flatbuffers_1.12.0.bb
@@ -24,12 +24,17 @@ BUILD_CXXFLAGS += "-std=c++11 -fPIC"
# BUILD_TYPE=Release is required, otherwise flatc is not installed
EXTRA_OECMAKE += "\
-DCMAKE_BUILD_TYPE=Release \
- -DFLATBUFFERS_BUILD_TESTS=OFF \
+ -DFLATBUFFERS_BUILD_TESTS=OFF \
-DFLATBUFFERS_BUILD_SHAREDLIB=ON \
"
inherit cmake
+rm_flatc_cmaketarget_for_target() {
+ rm -f "${SYSROOT_DESTDIR}/${libdir}/cmake/flatbuffers/FlatcTargets.cmake"
+}
+SYSROOT_PREPROCESS_FUNCS:class-target += "rm_flatc_cmaketarget_for_target"
+
S = "${WORKDIR}/git"
FILES_${PN}-compiler = "${bindir}"
--
2.17.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [oe][meta-oe][dunfell][PATCH] flatbuffers: adapt for cross-compilation environments
2022-11-17 11:51 [oe][meta-oe][dunfell][PATCH] flatbuffers: adapt for cross-compilation environments Bhabu Bindu
@ 2022-11-17 14:41 ` akuster808
0 siblings, 0 replies; 2+ messages in thread
From: akuster808 @ 2022-11-17 14:41 UTC (permalink / raw)
To: BINDU, openembedded-devel; +Cc: Ivan.Stepic, nisha.m.parrakat, Bhabu Bindu
On 11/17/22 6:51 AM, BINDU wrote:
> From: Ivan Stepic <Ivan.Stepic@bmw.de>
>
> Flatbuffers contains a library and a schema compiler. The package
> contains cmake files to discover the libraries and the compiler tool.
> Currently, all of these cmake files are installed into the target
> sysroot. However, the compiler utility isn't installed into the sysroot
> (as it is not runnable on the build machine).
>
> When an application that depends on flatbuffers gets built, it uses
> flatbuffers' exported cmake targets to configure the project. One of the
> exported targets is FlatcTarget.cmake which expects to see flatc binary
> in /usr/bin of the sysroot. Since binaries for target don't end up in
> target sysroot, cmake configuration fails.
>
> This patch addresses this problem of flatbuffers' build infrastructure
> in cross-compiling environments. By removing FlatcTarget.cmake for
> target builds from the sysroot we essentially skip this step of
> flatbuffers' configuration.
Are any of the other branches affected by this issue?
- armin
>
> Signed-off-by: Ivan Stepic <Ivan.Stepic@bmw.de>
> Signed-off-by: Bhabu Bindu <bhabu.bindu@kpit.com>
> ---
> meta-oe/recipes-devtools/flatbuffers/flatbuffers_1.12.0.bb | 7 ++++++-
> 1 file changed, 6 insertions(+), 1 deletion(-)
>
> diff --git a/meta-oe/recipes-devtools/flatbuffers/flatbuffers_1.12.0.bb b/meta-oe/recipes-devtools/flatbuffers/flatbuffers_1.12.0.bb
> index 859d6a0b0..c4f3594f3 100644
> --- a/meta-oe/recipes-devtools/flatbuffers/flatbuffers_1.12.0.bb
> +++ b/meta-oe/recipes-devtools/flatbuffers/flatbuffers_1.12.0.bb
> @@ -24,12 +24,17 @@ BUILD_CXXFLAGS += "-std=c++11 -fPIC"
> # BUILD_TYPE=Release is required, otherwise flatc is not installed
> EXTRA_OECMAKE += "\
> -DCMAKE_BUILD_TYPE=Release \
> - -DFLATBUFFERS_BUILD_TESTS=OFF \
> + -DFLATBUFFERS_BUILD_TESTS=OFF \
> -DFLATBUFFERS_BUILD_SHAREDLIB=ON \
> "
>
> inherit cmake
>
> +rm_flatc_cmaketarget_for_target() {
> + rm -f "${SYSROOT_DESTDIR}/${libdir}/cmake/flatbuffers/FlatcTargets.cmake"
> +}
> +SYSROOT_PREPROCESS_FUNCS:class-target += "rm_flatc_cmaketarget_for_target"
> +
> S = "${WORKDIR}/git"
>
> FILES_${PN}-compiler = "${bindir}"
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#99604): https://lists.openembedded.org/g/openembedded-devel/message/99604
> Mute This Topic: https://lists.openembedded.org/mt/95087923/3616698
> Group Owner: openembedded-devel+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [akuster808@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-11-17 14:42 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-17 11:51 [oe][meta-oe][dunfell][PATCH] flatbuffers: adapt for cross-compilation environments Bhabu Bindu
2022-11-17 14:41 ` akuster808
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.