mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-04-02 02:49:12 +00:00
Update fixes: | /home/flk/bitbake-builds/poky/build/tmp/work/corei7-64-poky-linux/re2/2024.03.01/sources/re2-2024.03.01/re2/prog.h:25:1: note: 'memchr' is defined in header '<cstring>'; this is probably fixable by adding '#include <cstring>' | 24 | #include "re2/sparse_set.h" | +++ |+#include <cstring> Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
46 lines
1.8 KiB
BlitzBasic
46 lines
1.8 KiB
BlitzBasic
DESCRIPTION = "A regular expression library"
|
|
HOMEPAGE = "https://github.com/google/re2/"
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=3b5c31eb512bdf3cb11ffd5713963760"
|
|
|
|
# tag 2025-11-05
|
|
SRCREV = "927f5d53caf8111721e734cf24724686bb745f55"
|
|
|
|
SRC_URI = "git://github.com/google/re2.git;branch=main;protocol=https;tag=2025-11-05 \
|
|
${@bb.utils.contains('PTEST_ENABLED', '1', 'file://run-ptest', '', d)} \
|
|
"
|
|
|
|
UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+(-\d+)+)"
|
|
|
|
DEPENDS = "abseil-cpp ${@bb.utils.contains('PTEST_ENABLED', '1', 'gtest googlebenchmark', '', d)}"
|
|
|
|
inherit cmake ptest
|
|
RDEPENDS:${PN}-ptest += "cmake sed"
|
|
|
|
EXTRA_OECMAKE += " \
|
|
-DBUILD_SHARED_LIBS=ON \
|
|
${@bb.utils.contains('PTEST_ENABLED', '1', '-DRE2_BUILD_TESTING=ON', '-DRE2_BUILD_TESTING=OFF', d)} \
|
|
"
|
|
# | riscv32-yoe-linux-ld.lld: error: undefined reference: __atomic_load_8
|
|
# | >>> referenced by libtesting.so (disallowed by --no-allow-shlib-undefined)
|
|
LDFLAGS:append:riscv32 = " -latomic"
|
|
|
|
do_install_ptest () {
|
|
cp -r ${B}/*_test ${D}${PTEST_PATH}
|
|
cp -r ${B}/CTestTestfile.cmake ${D}${PTEST_PATH}
|
|
sed -i -e 's#${B}#${PTEST_PATH}#g' `find ${D}${PTEST_PATH} -name CTestTestfile.cmake`
|
|
sed -i -e 's#${S}#${PTEST_PATH}#g' `find ${D}${PTEST_PATH} -name CTestTestfile.cmake`
|
|
# ERROR: re2-2024.03.01-r0 do_package_qa: QA Issue: /usr/lib64/re2/ptest/string_generator_test contained in package re2-ptest requires libtesting.so()(64bit), but no providers found in RDEPENDS:re2-ptest? [file-rdeps]
|
|
cp -r ${B}/libtesting.so ${D}${PTEST_PATH}
|
|
}
|
|
|
|
# ignore .so in /usr/lib64
|
|
SOLIBS = ".so*"
|
|
FILES_SOLIBSDEV = ""
|
|
INSANE_SKIP:${PN} += "dev-so"
|
|
|
|
# Don't include so files in dev package
|
|
FILES:${PN}-dev = "${includedir} ${libdir}/cmake ${libdir}/pkgconfig"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|