mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
flatbuffers: adapt for cross-compilation environments
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>
This commit is contained in:
parent
48b0721fac
commit
1e9bf08cca
|
|
@ -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}"
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user