mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-13 17:39:57 +00:00
7114e2fba1
In C++ we cannot have both assignment operator and const member. Since
span::operator= is defined, span::count_ constness must be removed.
Fixes:
FAILED: CMakeFiles/flatc.dir/src/util.cpp.o
ccache flatbuffers/2.0.0/recipe-sysroot-native/usr/bin/aarch64-webos-linux/aarch64-webos-linux-g++ --sysroot=flatbuffers/2.0.0/recipe-sysroot -DFLATBUFFERS_LOCALE_INDEPENDENT=1 -Iflatbuffers/2.0.0/git/include -Iflatbuffers/2.0.0/git/grpc -mbranch-protection=standard -fstack-protector-strong -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security -Werror=return-type -funwind-tables --sysroot=flatbuffers/2.0.0/recipe-sysroot -O2 -pipe -g -feliminate-unused-debug-types -fcanon-prefix-map -fmacro-prefix-map=flatbuffers/2.0.0/git=/usr/src/debug/flatbuffers/2.0.0 -fdebug-prefix-map=flatbuffers/2.0.0/git=/usr/src/debug/flatbuffers/2.0.0 -fmacro-prefix-map=flatbuffers/2.0.0/build=/usr/src/debug/flatbuffers/2.0.0 -fdebug-prefix-map=flatbuffers/2.0.0/build=/usr/src/debug/flatbuffers/2.0.0 -fdebug-prefix-map=flatbuffers/2.0.0/recipe-sysroot= -fmacro-prefix-map=flatbuffers/2.0.0/recipe-sysroot= -fdebug-prefix-map=flatbuffers/2.0.0/recipe-sysroot-native= -fvisibility-inlines-hidden -fPIC -DNDEBUG -MD -MT CMakeFiles/flatc.dir/src/util.cpp.o -MF CMakeFiles/flatc.dir/src/util.cpp.o.d -o CMakeFiles/flatc.dir/src/util.cpp.o -c flatbuffers/2.0.0/git/src/util.cpp
In file included from ../git/include/flatbuffers/util.h:23,
from ../git/src/util.cpp:44:
../git/include/flatbuffers/stl_emulation.h: In member function 'constexpr flatbuffers::span<T, Extent>& flatbuffers::span<T, Extent>::operator=(const flatbuffers::span<T, Extent>&)':
../git/include/flatbuffers/stl_emulation.h:549:12: error: assignment of read-only member 'flatbuffers::span<T, Extent>::count_'
549 | count_ = other.count_;
| ~~~~~~~^~~~~~~~~~~~~~
Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
51 lines
1.4 KiB
BlitzBasic
51 lines
1.4 KiB
BlitzBasic
SUMMARY = "Memory Efficient Serialization Library"
|
|
HOMEPAGE = "https://github.com/google/flatbuffers"
|
|
SECTION = "console/tools"
|
|
LICENSE = "Apache-2.0"
|
|
|
|
inherit python3-dir
|
|
|
|
PACKAGE_BEFORE_PN = "${PN}-compiler ${PN}-${PYTHON_PN}"
|
|
|
|
RDEPENDS:${PN}-compiler = "${PN}"
|
|
RDEPENDS:${PN}-${PYTHON_PN} = "${PN}"
|
|
RDEPENDS:${PN}-dev += "${PN}-compiler"
|
|
|
|
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57"
|
|
|
|
SRCREV = "a9a295fecf3fbd5a4f571f53b01f63202a3e2113"
|
|
SRC_URI = "git://github.com/google/flatbuffers.git;branch=master;protocol=https \
|
|
file://0001-C-stl_emulation-span-count_-is-not-const-anymore-722.patch \
|
|
"
|
|
S = "${WORKDIR}/git"
|
|
|
|
CVE_CHECK_IGNORE += "CVE-2020-35864"
|
|
|
|
CXXFLAGS += "-fPIC"
|
|
BUILD_CXXFLAGS += "-fPIC"
|
|
|
|
# BUILD_TYPE=Release is required, otherwise flatc is not installed
|
|
EXTRA_OECMAKE += "\
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-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"
|
|
|
|
do_install:append() {
|
|
install -d ${D}${PYTHON_SITEPACKAGES_DIR}
|
|
cp -rf ${S}/python/flatbuffers ${D}${PYTHON_SITEPACKAGES_DIR}
|
|
}
|
|
|
|
FILES:${PN}-compiler = "${bindir}"
|
|
|
|
FILES:${PN}-${PYTHON_PN} = "${PYTHON_SITEPACKAGES_DIR}"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|