summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools
Commit message (Collapse)AuthorAgeFilesLines
...
* perfetto: fix error with gcc-15mark.yang2025-04-102-0/+106
| | | | | | | | | | | | | | | | * Backport fix from: https://github.com/google/perfetto/commit/3953f56f98420e2ecb0e1c4542e20bfbb81da965 * To fix the error with gcc-15. http://errors.yoctoproject.org/Errors/Details/851189/ ../git/include/perfetto/ext/tracing/core/slice.h:47:46: error: 'uint8_t' was not declared in this scope 47 | static Slice TakeOwnership(std::unique_ptr<uint8_t[]> buf, size_t size) { | ^~~~~~~ ../git/include/perfetto/ext/tracing/core/slice.h:25:1: note: 'uint8_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>' 24 | #include <string> +++ |+#include <cstdint> Signed-off-by: mark.yang <mark.yang@lge.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* icon-slicer: add x11 to REQUIRED_DISTRO_FEATURESMartin Jansa2025-04-081-1/+3
| | | | | Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* openocd: Update patch upstream statusSofiane HAMAM2025-04-071-1/+1
| | | | | | | | | The patch has been merged. see: https://review.openocd.org/q/6834f022b96fb1c7f5829166578e01a0ac223cb0 Signed-off-by: Sofiane HAMAM <sofiane.hamam@smile.fr> Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* luajit: Update to latest on v2.1 branchChangqing Li2025-04-071-2/+2
| | | | | | | License-Update: copyright year updated Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cbindgen: Fix build on riscv32Khem Raj2025-04-062-1/+40
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* icon-slicer: Fix hotspot y coordinatesKhem Raj2025-04-062-2/+31
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* openocd : Fix non reproducible buildSofiane HAMAM2025-04-042-0/+39
| | | | | | | | | | | | This package defines PKGBLDDATE as build timestamp which makes it non reproducible. Use SOURCE_DATE_EPOCH if it is found, otherwise use build timestamp. Following best practices, see : https://reproducible-builds.org/docs/source-date-epoch/ Co-developed-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Sofiane HAMAM <sofiane.hamam@smile.fr> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xmlrpc-c: fix build with gcc-15.0.1mark.yang2025-04-012-0/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | | * Fix build error with gcc-15.0.1 http://errors.yoctoproject.org/Errors/Details/850147/ srcdir/lib/util/include/bool.h:13:5: error: cannot use keyword 'false' as enumeration constant 13 | false = 0, | ^~~~~ srcdir/lib/util/include/bool.h:13:5: note: 'false' is a keyword with '-std=c23' onwards srcdir/lib/util/include/bool.h:15:3: error: expected ';', identifier or '(' before 'bool' 15 | } bool; | ^~~~ srcdir/lib/util/include/bool.h:15:3: warning: useless type name in empty declaration In file included from sleep.c:2: srcdir/lib/util/include/bool.h:13:5: error: cannot use keyword 'false' as enumeration constant 13 | false = 0, | ^~~~~ srcdir/lib/util/include/bool.h:13:5: note: 'false' is a keyword with '-std=c23' onwards srcdir/lib/util/include/bool.h:15:3: error: expected ';', identifier or '(' before 'bool' 15 | } bool; | ^~~~ gcc-15 switched to -std=c23 by default. https://gcc.gnu.org/git/?p=gcc.git;a=commitdiff;h=55e3bd376b2214e200fa76d12b67ff259b06c212 Signed-off-by: mark.yang <mark.yang@lge.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* sqlite-orm: fix build with gcc-15.0.1mark.yang2025-04-012-1/+56
| | | | | | | | | | | | | | | | | | * see more details: http://errors.yoctoproject.org/Errors/Details/850148/ TOPDIR/tmp/work/core2-64-oe-linux/sqlite-orm/1.5/git/examples/synchronous.cpp:7:5: error: 'uint16_t' does not name a type 7 | uint16_t src_port; | ^~~~~~~~ TOPDIR/tmp/work/core2-64-oe-linux/sqlite-orm/1.5/git/examples/synchronous.cpp:3:1: note: 'uint16_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>' 2 | #include <sqlite_orm/sqlite_orm.h> +++ |+#include <cstdint> 3 | #include <string> While this was backported from 6a96d1cec4(Explicitly included <cstdint> in examples and unit tests), since it was a commit made in v1.9, only synchronous.cpp was modified as other files do not exist in the current version. Signed-off-by: mark.yang <mark.yang@lge.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mcpp: Stick to C17mark.yang2025-04-011-0/+4
| | | | | | | | | | | | | * Fix build error with gcc-15 by renaming goto labels see more details: http://errors.yoctoproject.org/Errors/Details/850149/ ../../mcpp-2.7.2/src/system.c:3436:15: error: expected identifier or '*' before 'true' true, false are reserved keywords in gcc-15 Rename goto 'labels' from 'ture' to 'true_label', from 'false' 'false_label' to avoid conflicts. Signed-off-by: mark.yang <mark.yang@lge.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ctags: upgrade 6.1.20250316.0 -> 6.1.20250330.0Wang Mingyu2025-03-311-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* luajit: Remove dangling patch fileNiko Mauno2025-03-311-19/+0
| | | | | | | | Not referenced since commit 1a05731de484f1f97eecaeb56296f72e76ba2b32 ("luajit: upgrade 2.1beta -> 2.1"). Signed-off-by: Niko Mauno <niko.mauno@vaisala.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* debootstrap: upgrade 1.0.138 -> 1.0.140Yi Zhao2025-03-311-1/+1
| | | | | | | https://salsa.debian.org/installer-team/debootstrap/-/blob/1.0.140/debian/changelog Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* apitrace: Fix build with gcc-15tho3.nguyen2025-03-282-0/+43
| | | | | | | | | | | | | | | | To fix errors: In file included from TOPDIR/tmp/work/core2-64-oe-linux/apitrace/11.1+11.1+git/git/frametrim/ft_matrixstate.hpp:30, from TOPDIR/tmp/work/core2-64-oe-linux/apitrace/11.1+11.1+git/git/frametrim/ft_matrixstate.cpp:28: TOPDIR/tmp/work/core2-64-oe-linux/apitrace/11.1+11.1+git/git/frametrim/ft_dependecyobject.hpp:187:44: error: 'uint64_t' was not declared in this scope 187 | std::unordered_map<unsigned, std::pair<uint64_t, uint64_t>> m_buffer_mappings; | ^~~~~~~~ ... TOPDIR/tmp/work/core2-64-oe-linux/apitrace/11.1+11.1+git/git/retrace/metric_writer.cpp:50:70: error: 'uint64_t' does not name a type 50 | case CNT_NUM_UINT64: std::cout << "\t" << *(reinterpret_cast<uint64_t*>(data)); break; ... Signed-off-by: tho3.nguyen <tho3.nguyen@lge.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* jq: Stick to C17 until next releaseKhem Raj2025-03-271-0/+3
| | | | | | | | Patches are sprinkled in master branch of jq but the backports regresses tests, so its better to keep it at C17 for now. Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Martin Jansa <martin.jansa@gmail.com>
* Revert "jq: fix build with gcc-15"Khem Raj2025-03-274-631/+0
| | | | This reverts commit ec9a5598e48f1e4dad8f59e8a49bfe6657bc2284.
* jq: fix build with gcc-15Martin Jansa2025-03-254-0/+631
| | | | | | | | | | | | * backport 3 commits to fix: http://errors.yoctoproject.org/Errors/Details/848831/ ../jq-1.7.1/src/builtin.c:1705:4: error: initialization of 'jv (*)(void)' from incompatible pointer type 'jv (*)(jq_state *, jv)' [-Wincompatible-pointer-types] 1705 | {f_ ## name, #name, 1}, | ^~ Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-psycopg: upgrade 3.2.5 -> 3.2.6Wang Mingyu2025-03-251-1/+1
| | | | | | | | Changelog: Fix connection semantic when using target_session_attrs=prefer-standby Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* php: upgrade 8.4.4 -> 8.4.5Wang Mingyu2025-03-251-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* jwt-cpp: upgrade 0.7.0 -> 0.7.1Wang Mingyu2025-03-251-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* abseil-cpp: upgrade 20250127.0 -> 20250127.1Wang Mingyu2025-03-253-43/+7
| | | | | | | | | | | | | | | | | | | | 0001-Actually-use-the-hint-space-instruction-to-strip-PAC.patch removed since it's inclued in 20250127.1 abseil-cpp/0004-abseil-ppc-fixes.patch refreshed for 20250127.1 Changelog: ============= - Added support for Bazel 8.0 - Added support for Bazel Platforms for better portability - Added ABSL_ATTRIBUTE_VIEW and ABSL_ATTRIBUTE_OWNER for diagnosing certain lifetime issues - Many performance improvements - A security issue in hash container create/resize has been fixed. Note that the latest patch releases for previous LTS versions also address this issue. - Bazel BUILD files now reference repositories by their canonical names from the Bazel Central Registry. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* poke: Fix the reproducibility of installed scriptsYoann Congal2025-03-241-0/+3
| | | | | | | | | | | | | | | | | | | | | | Upstream does not support our default parallel "make -j install"[0]. So, disable it with PARALLEL_MAKEINST = "-j1" to avoid non-reproducibility where some scripts can be installed or not. Explanation for the non-reproducibility: There is a race condition between 2 actions at install around the installed script in $pkgdatadir: * Removal of existing scripts /usr/share/poke/*.pk * Installation of default scripts in the same directory Sadly, those 2 actions are not ordered. Depending on the build system load, removal can (rarely) happen *after* the installation. In this case, no script in present in /usr/share/poke/ when the install process end. [0]: https://sourceware.org/bugzilla/show_bug.cgi?id=32815#c1 Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* protobuf: Add -latomic to CXXFLAGSKhem Raj2025-03-242-5/+5
| | | | | | | | | | | | | | | Adding to LDFLAGS works with LLD linker but not with BFD ld since it gets added before the abseil-cpp libraries on linker cmdline which does not link it and still finds the atomic function like `__atomic_store_8' as missing Use mipsarcho32 for override which covers both mips and mipsel Thanks for suggestions - RAED [1] [1] https://github.com/openembedded/meta-openembedded/pull/952 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* protobuf: Link with libatomic on riscv32Khem Raj2025-03-221-0/+2
| | | | | | | | | | rv32 does not have compiler builtins for 64bit atomics Fixes | riscv32-yoe-linux-ld.lld: error: undefined reference: __atomic_load_8 | >>> referenced by /mnt/b/yoe/master/build/tmp/work/riscv32-yoe-linux/protobuf/5.29.4/recipe-sysroot/usr/lib/libabsl_cordz_info.so.2501.0.0 (disallowed by --no-allow-shlib-undefined) Signed-off-by: Khem Raj <raj.khem@gmail.com>
* android-tools: fix build with gcc-15Martin Jansa2025-03-212-0/+70
| | | | | | | | * fixes build with gcc-15: http://errors.yoctoproject.org/Errors/Details/848455/ Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* protobuf: 4.25.5 -> 5.29.4Hongxu Jia2025-03-215-26/+126
| | | | | | | | | | | | | | | | | | | | Refresh local patches - 0001-Fix-build-on-mips-clang.patch - 0001-examples-Makefile-respect-CXX-LDFLAGS-variables-fix-.patch Fix protobuf-native build failure with gcc 10 Fix dev-elf QA issue: |ERROR: protobuf-5.29.4-r0 do_package_qa: QA Issue: -dev package protobuf-dev contains non-symlink .so '/usr/lib/libutf8_range.so' [dev-elf] |ERROR: protobuf-5.29.4-r0 do_package_qa: QA Issue: -dev package protobuf-dev contains non-symlink .so '/usr/lib/libutf8_validity.so' [dev-elf] Changelog: https://github.com/protocolbuffers/protobuf/releases/tag/v29.4 Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ctags: upgrade 6.1.20250302.0 -> 6.1.20250316.0Wang Mingyu2025-03-201-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* recipes: Fix variable assignment whitespaceRichard Purdie2025-03-209-9/+9
| | | | | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nodejs: upgrade 22.13.0 -> 22.14.0Jason Schonberg2025-03-183-2/+2
| | | | | | | | | | License-Update: Change the location of the inspector_protocol https://github.com/nodejs/node/commit/a48430d4d34eb9f598522410dd7723f069c574d0 Changelog: https://github.com/nodejs/node/releases/tag/v22.14.0 Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* php: upgrade from 8.2.26 to 8.4.4Chen Qi2025-03-139-432/+45
| | | | | | | | | | | | | | | | | | | 0001-ext-opcache-config.m4-enable-opcache.patch is dropped. This patch could be dropped because the new version now uses AC_CACHE_CHECK, and we can just pass ac_cv_xxx to it instead of using a local patch. 0008-ext-imap-config.m4-fix-include-paths.patch is dropped. ext/imap has been removed from php in this new version. See https://github.com/php/php-src/pull/13190. As a result of this removal, the corresponding PACKAGECONFIG is removed from this new version. 0001-Change-whether-to-inline-XXH3_hashLong_withSecret-to.patch is dropped. It has been merged in this new version. Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* php: drop some unneeded patchesChen Qi2025-03-134-117/+3
| | | | | | | | | | | | | | | | | Drop 0003-php-remove-host-specific-info-from-header-file.patch. Instead we export PHP_UNAME = "Linux" to achieve the same effect. Drop 0002-build-php.m4-don-t-unset-cache-variables.patch. The related ac_cv_lib_xxx and ac_cv_func_xxx settings in this recipe are also removed. This patch is not needed from the my build testing result. Drop 0009-php-don-t-use-broken-wrapper-for-mkdir.patch. This patch says that the wrapper is broken, but does not say why. Without this patch, things still build. Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* protobuf-c: 1.5.0 -> 1.5.1Hongxu Jia2025-03-133-16/+1467
| | | | | | | | | | | | | | | | According to [1], protobuf-c 1.5.1 has commits [2] to fix broke with protobuf 26.0 (4.26.0) Also port a patch from archlinux [3] to support protobuf 30 (4.30.0) License-Update: update copyright years to 2025 [1] https://github.com/protobuf-c/protobuf-c/issues/730 [2] https://github.com/protobuf-c/protobuf-c/pull/711/ [3] https://gitlab.archlinux.org/archlinux/packaging/packages/protobuf-c/-/blob/main/protobuf-30.patch Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* grpc: Upgrade to 1.71.0 ReleaseKhem Raj2025-03-121-2/+2
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pahole: upgrade 1.28 -> 1.29Changqing Li2025-03-111-1/+1
| | | | | | | Upgrade to the latest version Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pocketpy: upgrade 2.0.5 -> 2.0.6Wang Mingyu2025-03-111-1/+1
| | | | | | | | | | | | | | Changelog: ========= - add pybind11 implementation for module reload - Improve memory managements (mem-v2) - implement array2d.chunked_array2d[T, TContext] - Add test cases for array2d.chunked_array2d - Refactor Frame struct - [lz4] Make lz4 a submodule. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ctags: upgrade 6.1.20250223.0 -> 6.1.20250302.0Wang Mingyu2025-03-111-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xmlrpc-c: 1.60.03 -> 1.64.0Hongxu Jia2025-03-113-50/+29
| | | | | | | | | Refresh local patches: - 0001-test-cpp-server_abyss-Fix-build-with-clang-libc.patch - 0001-unix-common.mk-Ensuring-Sequential-Execution-of-rm-a.patch Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libtoml11: Upgrade to 4.4.0Khem Raj2025-03-082-2/+49
| | | | | | Fix build with clang-20 while here Signed-off-by: Khem Raj <raj.khem@gmail.com>
* fastfloat: remove recipeMarkus Volk2025-03-071-15/+0
| | | | | | | fastfloat was moved to oe-core Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* abseil-cpp: Backport `xpaclri` asm fixAlex Kiernan2025-03-012-0/+33
| | | | | | | | | | | | | | Native build on aarch64 breaks with: | {standard input}: Assembler messages: | {standard input}:169: Error: selected processor does not support `xpaclri' | {standard input}:411: Error: selected processor does not support `xpaclri' | {standard input}:859: Error: selected processor does not support `xpaclri' | {standard input}:1140: Error: selected processor does not support `xpaclri' Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com> Signed-off-by: Alex Kiernan <alexk@a-squared-projects.uk> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* tk8: Exclude aclocal so existing macros are usedKhem Raj2025-02-281-0/+1
| | | | | | Adjustments for autoconf changes in oe-core Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cgdb: fix autoreconfRoss Burton2025-02-271-0/+2
| | | | | | | autoreconf needs to be told where to find macros as the Makefile.am does not do this. Signed-off-by: Ross Burton <ross.burton@arm.com>
* tk: exclude aclocal so existing macros are usedRoss Burton2025-02-271-0/+1
| | | | | | | This package has hand-coded aclocal.m4 so ensure that we don't run aclocal. Signed-off-by: Ross Burton <ross.burton@arm.com>
* xmlrpc-c: use autoreconfRoss Burton2025-02-272-4/+21
| | | | | | | Add a patch to not use AM_INIT_AUTOMAKE as automake isn't actually used, and just let autotools.bbclass run autoreconf. Signed-off-by: Ross Burton <ross.burton@arm.com>
* poke: remove obsolete acpathsRoss Burton2025-02-271-4/+0
| | | | | | | | | As of "autotools: don't try and find in-tree macros" in core, acpaths is no longer used. Also switch to out-of-tree builds as this appear to work now. Signed-off-by: Ross Burton <ross.burton@arm.com>
* php: remove obsolete acpathsRoss Burton2025-02-271-2/+0
| | | | | | | As of "autotools: don't try and find in-tree macros" in core, acpaths is no longer used. Signed-off-by: Ross Burton <ross.burton@arm.com>
* poke: enable out of tree buildsRoss Burton2025-02-271-2/+1
|
* cpuid: fix strippingRoss Burton2025-02-271-3/+1
| | | | | | | | | | | | | | cpuid's Makefile passes -s to install to strip the binaries, but as this uses the _host_ strip it can fail if that strip doesn't know about the target (for example, building cpuid for x86 on aarch64): install -D -s -m 755 cpuid .../image/usr/bin/cpuid strip: Unable to recognise the format of the input file `.../image/usr/bin/cpuid' Set INSTALL_STRIP='' so that the binaries are not stripped, and remove the INSANE_SKIP for already-stripped. Signed-off-by: Ross Burton <ross.burton@arm.com>
* abseil-cpp: upgrade 20240722.0 -> 20250127.0Changqing Li2025-02-272-33/+2
| | | | | | | | | | | | Upgrade to the latest new LTS release, release note: https://github.com/abseil/abseil-cpp/releases?page=1 * drop 0005-Don-t-match-Wnon-virtual-dtor-in-the-flags-are-neede.patch, already include in this LTS release * Include security fix for CVE-2025-0838 Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* valijson: upgrade 1.0.3 -> 1.0.4Wang Mingyu2025-02-261-1/+1
| | | | | | | | | | | | | | | | Changelog: ========== - Prevent potential division by zero - Fix stack overflow for unresolved references - Fix buffer overflow in u8_strlen - Fuzzing improvements - Spelling corrections - Detect circular references when parsing schemas - Use statically allocated regexes for date/time pattern matching - Allow permissive validation of date/time formats Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>