[OE-core] [PATCH 1/2] mesa: Add packageconfig knob to control tegra gallium driver

2024-07-11 Thread Khem Raj
Signed-off-by: Khem Raj --- meta/recipes-graphics/mesa/mesa.inc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta/recipes-graphics/mesa/mesa.inc b/meta/recipes-graphics/mesa/mesa.inc index d56def29163..c426e8fddd4 100644 --- a/meta/recipes-graphics/mesa/mesa.inc +++ b/meta/recipes

[OE-core] [PATCH 2/2] arch-arm64: Use neoverse-v1 ISA for Qemu usermode

2024-07-11 Thread Khem Raj
features, which is evident that SIGILL also happens when using -cpu neoverse-v2, therefore explicitly select neoverse-v1 for ISA, which works and covers almost all (if not all) cpu tunes for armv8 we have. Signed-off-by: Khem Raj --- meta/conf/machine/include/arm/arch-arm64.inc | 5 + 1 file

Re: [OE-core] [PATCH] distro/include: Add yocto-space-optimize, disabling debugging for large components

2024-07-11 Thread Khem Raj
On Thu, Jul 11, 2024 at 6:35 AM Richard Purdie via lists.openembedded.org wrote: > > On Thu, 2024-07-11 at 12:10 +, Ross Burton via lists.openembedded.org > wrote: > > On 11 Jul 2024, at 10:30, Richard Purdie via lists.openembedded.org > > wrote: > > > > > > +DEBUG_FLAGS:remove:pn-llvm =

[OE-core] [PATCH] gdb: Upgrade to 15.1 release

2024-07-09 Thread Khem Raj
Improved python support and needs c++17 std in compiler to build Detailed Release Notee [1] [1] https://sourceware.org/pipermail/gdb-announce/2024/000140.html Signed-off-by: Khem Raj --- meta/conf/distro/include/tcmode-default.inc | 2 +- ...ian_14.2.bb => gdb-cross-canadian_15.1.bb} |

Re: [OE-core] [PATCH v3] acl: Fix nfs ptest failure

2024-07-08 Thread Khem Raj
On Mon, Jul 8, 2024 at 8:56 AM Ross Burton wrote: > > On 1 Jul 2024, at 17:33, Alexandre Belloni via lists.openembedded.org > wrote: > > > > On 01/07/2024 09:19:50-0700, Khem Raj wrote: > >> On Mon, Jul 1, 2024 at 1:25 AM Yu, Mingli wrote: > >> >

Re: [OE-core] [PATCH] tune: octeontx2: remove crypto from TUNE_FEATURES

2024-07-03 Thread Khem Raj
ang = "${@bb.utils.contains("TUNE_FEATURES", "octeontx2 crypto", " -mcpu=octeontx2", "", d)}" > > B.R. > Ruiqiang > -- > *From:* Khem Raj > *Sent:* Wednesday, July 3, 2024 11:30 > *To:* Hao, Ruiqiang > *C

Re: [OE-core] [PATCH] tune: octeontx2: remove crypto from TUNE_FEATURES

2024-07-02 Thread Khem Raj
On Tue, Jul 2, 2024 at 7:00 PM Ruiqiang Hao via lists.openembedded.org wrote: > > From: Ruiqiang Hao > > Since GCC's configuration includes the crypto feature when specifying > '-mcpu=octeontx2', there's no need to additionally include this feature > in TUNE_FEATURES. Removing crypto to fix the

[OE-core] [PATCH] busybox: Fix tc applet build when using kernel 6.8+

2024-07-02 Thread Khem Raj
We now have 6.9 kernel headers in master which means busybox builds with CONFIG_TC will fail to build due to CBQ being dropped in kernel 6.8+ Apply a fix which is reported upstream Signed-off-by: Khem Raj --- .../busybox/busybox-1.36.1-no-cbq.patch | 61 +++ meta/recipes

[OE-core] [PATCH] mesa: Including missing LLVM header

2024-07-02 Thread Khem Raj
This issue happens with LLVM trunk Signed-off-by: Khem Raj --- ...lude-missing-llvm-IR-header-Module.h.patch | 41 +++ meta/recipes-graphics/mesa/mesa.inc | 1 + 2 files changed, 42 insertions(+) create mode 100644 meta/recipes-graphics/mesa/files/0001-amd-Include

Re: [OE-core] [PATCH v3] acl: Fix nfs ptest failure

2024-07-01 Thread Khem Raj
On Mon, Jul 1, 2024 at 1:25 AM Yu, Mingli wrote: > > > On 6/28/24 02:21, Khem Raj wrote: > > CAUTION: This email comes from a non Wind River email account! > > Do not click links or open attachments unless you recognize the sender > and know the content is safe. > &g

Re: [OE-core] [PATCH v3] acl: Fix nfs ptest failure

2024-06-27 Thread Khem Raj
I am seeing two XPASSes which is ok but the test runs reports failure back root@qemux86-64:/usr/lib/acl/ptest# ./run-ptest PASS: test/cp.test PASS: test/getfacl-lfs.test PASS: test/getfacl-noacl.test PASS: test/getfacl-recursive.test PASS: test/malformed-restore.test PASS: test/misc.test PASS:

[OE-core] [PATCH] utils.bbclass: Use objdump instead of readelf to compute SONAME

2024-06-27 Thread Khem Raj
gly, as an aside, the post processing expression is simplified too [1] https://github.com/llvm/llvm-project/pull/96562 Signed-off-by: Khem Raj --- meta/classes-global/utils.bbclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/classes-global/utils.bbclass b/m

Re: [OE-core] [PATCH v2] gcc: Fix wrong order of gcc include paths on musl systems

2024-06-27 Thread Khem Raj
ignore this one. On Thu, Jun 27, 2024 at 12:51 AM Khem Raj wrote: > > musl does not use gcc private system headers, however, the path gets > prepended since gcc driver passes -iprefix option to cc1 based on its > installation location. This starts to prefer these headers inste

[OE-core] [PATCH v2] gcc: Fix wrong order of gcc include paths on musl systems

2024-06-27 Thread Khem Raj
switches prepend to append for musl systems. Signed-off-by: Khem Raj --- v2: Use a runtime check instead of build time check meta/recipes-devtools/gcc/gcc-14.1.inc| 1 + ...te-include-paths-on-musl-instead-of-.patch | 36 +++ 2 files changed, 37 insertions(+) create mode

[OE-core] [PATCH] llvm: Update to 18.1.8

2024-06-26 Thread Khem Raj
labels in macros (#92494) * 8c0fe0d65ed8 release/18.x: [clang-format] Don't always break before << between str… (#94091) * 7e6ece9b4f2d [PPCMergeStringPool] Only replace constant once (#92996) * 1ce2d26cd2e9 Bump version to 18.1.7 (#93723) Signed-off-by: Khem Raj --- meta/recipes-devtool

Re: [OE-core][PATCH] python3-numpy: upgrade 1.26.4 -> 2.0.0

2024-06-23 Thread Khem Raj
gned-off-by: Trevor Gamblin > > --- > > ...1-numpy-core-Define-RISCV-32-support.patch | 28 +++ > > ...numpy_1.26.4.bb => python3-numpy_2.0.0.bb} | 10 --- > > 2 files changed, 22 insertions(+), 16 deletions(-) > > rename meta/recipes-devtools/python

Re: [OE-core] [PATCH 11/15] tcp-wrappers: mark all patches as inactive-upstream

2024-06-22 Thread Khem Raj
-wrappers-7.6/0001-Fix-implicit-function-declaration-warnings.patch > +++ > b/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/0001-Fix-implicit-function-declaration-warnings.patch > @@ -5,7 +5,7 @@ Subject: [PATCH] Fix implicit-function-declaration warnings > > These are seen wi

[OE-core] [PATCH] rust-target-config: Update data layouts for 32-bit arm targets

2024-06-21 Thread Khem Raj
-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S64` meta-rust issue report with rust 1.76 [2] [1] https://github.com/llvm/llvm-project/commit/308e82ecebeef1342004637db9fdf11567a299b3 [2]: https://github.com/meta-rust/meta-rust/issues/444 Signed-off-by: Tronje Krabbe Signed-off-by: Khem Raj

Re: [OE-core][PATCH] openssl: Upgrade 3.3.0 -> 3.3.1

2024-06-21 Thread Khem Raj
On Fri, Jun 21, 2024 at 3:03 AM Clément Péron via lists.openembedded.org wrote: > > Hi, > > I got an issue with riscv32 > > | crypto/riscv32cpuid.s:77: Error: symbol `riscv_vlen_asm' is already > defined 6703 > > It seems that it's due to OE that is applying a patch that has been > upstreameder

Re: [OE-core][PATCH v2 0/7] Add SPDX 3.0 support

2024-06-20 Thread Khem Raj
Hey Joshua https://errors.yoctoproject.org/Errors/Build/187139/ does this seem related to this changeset On Wed, Jun 19, 2024 at 3:18 PM Joshua Watt via lists.openembedded.org wrote: > > This patch series add support for SPDX 3.0 and sets it as the default. > Currently it is not possible to

Re: [OE-core] [PATCH] binutils: stable 2.42 branch updates

2024-06-20 Thread Khem Raj
lgtm On Wed, Jun 19, 2024 at 11:23 PM wrote: > > From: Sundeep KOKKONDA > > Below commits on binutils-2.42 stable branch are updated. > > 6c360d37662 PR31898 bug in processing DW_RLE_startx_endx > bfda03eed33 aarch64: Remove asserts from operand qualifier decoders > > Dropped:

Re: [OE-core] QemuPPC64 machine status

2024-06-17 Thread Khem Raj
On Mon, Jun 17, 2024 at 4:51 AM Alexander Kanavin via lists.openembedded.org wrote: > > RESOLVED WONTFIX I’m afraid. The set of tested targets is defined by YP > members. If other targets regress, it’s on those who need them to provide > fixes. > I would make a distinction here to note that

Re: [OE-core] QemuPPC64 machine status

2024-06-17 Thread Khem Raj
On Mon, Jun 17, 2024 at 2:51 AM Dmitry Baryshkov via lists.openembedded.org wrote: > > Hello, > > Is qemuppc64 considered to be supported? We have been running CI over > a set of machines, it seems that PPC64 kernel build is broken for > quite some time: > >

Re: [OE-core] [PATCH] native/nativesdk: Stop overriding unprefixed *FLAGS variables

2024-06-16 Thread Khem Raj
I have narrowed down python3-bcrypt build failure to this change on qemuriscv64 see https://errors.yoctoproject.org/Errors/Details/786877/ On Thu, Jun 13, 2024 at 1:22 PM Richard Purdie via lists.openembedded.org wrote: > > We're currently encouraging an "arms race" with the FLAGS variables

Re: [OE-core][PATCH 2/2] findutils: upgrade from 4.9.0 to 4.10.0

2024-06-14 Thread Khem Raj
sortrpmverify > root@qemux86-64:/usr/lib/findutils/ptest# rpm -qa | grep musl > musl-1.2.4+git0+79bdacff83-r0.core2_64 > I have musl updated staged in contrib/yoe/mut I wonder if it’s seen with newer musl I also use clang and libc++ so could be that too > > Regards, > Qi >

Re: [OE-core][PATCH 2/2] findutils: upgrade from 4.9.0 to 4.10.0

2024-06-14 Thread Khem Raj
This fails ptests with qemux86_64/musl bitbake core-image-ptest-findutils results in -find: invalid user name or UID argument to -user: '4294967296' +find: invalid user name or UID argument to -user: ‘4294967296’ --- exp +++ err @@ -1 +1 @@ -find: invalid group name or GID argument to -group:

[OE-core] [PATCH] gawk: Remove References to /usr/local/bin/gawk

2024-06-14 Thread Khem Raj
Also replace the hashbangs using /bin/gawk to use ${bindir}/gawk This fixes issues such as https://github.com/riscv/meta-riscv/issues/384 Signed-off-by: Khem Raj --- meta/recipes-extended/gawk/gawk_5.3.0.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-extended/gawk

Re: [OE-core] [PATCH] expect-native: fix build with gcc-14

2024-06-13 Thread Khem Raj
On Thu, Jun 13, 2024 at 1:40 AM Richard Purdie via lists.openembedded.org wrote: > On Thu, 2024-06-13 at 14:18 +0800, Changqing Li via lists.openembedded.org > wrote: > > From: Changqing Li > > > > * do_configure failed with gcc-14: > > error in build/config.log: > > conftest.c:56:3: error:

Re: [OE-core] [PATCH 2/2] gcc: remove g77/f77

2024-06-13 Thread Khem Raj
On Thu, Jun 13, 2024 at 4:53 AM Kai Kang via lists.openembedded.org wrote: > > From: Kai Kang > > g77/f77 has been removed from gcc 4.0.0 via commit: > > * b4117c30610 Makefile.def, [...]: Remove all mention of libf2c. > > When set > > FORTRAN = ",f77" > > it complains with error: > > | The

[OE-core] [PATCH v3] gstreamer1.0-plugins-bad: Fix build with musl

2024-06-13 Thread Khem Raj
Signed-off-by: Khem Raj --- v2: Refresh patch and change upstream status to accepted v3: Change status to backport ...path_get_basename-instead-of-libc-ba.patch | 96 +++ .../gstreamer1.0-plugins-bad_1.24.3.bb| 1 + 2 files changed, 97 insertions(+) create mode 100644

[OE-core] [PATCH v2] gstreamer1.0-plugins-bad: Fix build with musl

2024-06-12 Thread Khem Raj
Signed-off-by: Khem Raj --- v2: Refresh patch and change upstream status to accepted ...path_get_basename-instead-of-libc-ba.patch | 96 +++ .../gstreamer1.0-plugins-bad_1.24.3.bb| 1 + 2 files changed, 97 insertions(+) create mode 100644 meta/recipes-multimedia

[OE-core] [PATCH] gcc: Fix typo in increment expression in unicode from libstdc++

2024-06-12 Thread Khem Raj
This issue is seen when libstdc++ headers are used by clang18 see - https://github.com/llvm/llvm-project/issues/92586 Signed-off-by: Khem Raj --- meta/recipes-devtools/gcc/gcc-14.1.inc| 1 + ...-in-_Grapheme_cluster_view-_Iterator.patch | 76 +++ 2 files changed, 77

[OE-core] [PATCH] gstreamer1.0-plugins-bad: Fix build with musl

2024-06-12 Thread Khem Raj
Signed-off-by: Khem Raj --- ...path_get_basename-instead-of-libc-ba.patch | 98 +++ .../gstreamer1.0-plugins-bad_1.24.3.bb| 1 + 2 files changed, 99 insertions(+) create mode 100644 meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0001-uvcgadget-Use

Re: [OE-core][PATCH] python3: skip test_concurrent_futures/test_deadlock

2024-06-12 Thread Khem Raj
On Wed, Jun 12, 2024 at 8:10 AM Trevor Gamblin via lists.openembedded.org wrote: > > > On 2024-06-12 11:05 a.m., Trevor Gamblin wrote: > > These tests are causing hangs on the Autobuilder, so disable them for > > now. > > Note that this was submitted for the 3.12.4 patch sent recently, so > it'll

[OE-core] [PATCH v2] ltp: Fix build break with clang on risv64

2024-06-11 Thread Khem Raj
Signed-off-by: Khem Raj --- v2: Drop setting compiler-rt explicitly ...-__clear_cache-declaration-for-clang.patch | 32 +++ meta/recipes-extended/ltp/ltp_20240524.bb | 1 + 2 files changed, 33 insertions(+) create mode 100644 meta/recipes-extended/ltp/ltp/0001-Add

Re: [OE-core] [PATCH] ltp: Fix build break with clang on risv64

2024-06-11 Thread Khem Raj
On Tue, Jun 11, 2024 at 3:49 AM Ross Burton wrote: > On 11 Jun 2024, at 07:00, Khem Raj via lists.openembedded.org gmail@lists.openembedded.org> wrote: > > > > +LDFLAGS:append:riscv64:toolchain-clang = " -rtlib=compiler-rt" > > Can you a

[OE-core] [PATCH] ltp: Fix build break with clang on risv64

2024-06-11 Thread Khem Raj
Signed-off-by: Khem Raj --- ...-__clear_cache-declaration-for-clang.patch | 32 +++ meta/recipes-extended/ltp/ltp_20240524.bb | 2 ++ 2 files changed, 34 insertions(+) create mode 100644 meta/recipes-extended/ltp/ltp/0001-Add-__clear_cache-declaration-for-clang.patch diff

Re: [OE-core] [PATCH 1/2] python3: Check for host OS type instead of build OS

2024-06-07 Thread Khem Raj
o > yeah, it exposed another issue in how we configure gcc for musl sadly. > > On 04/06/2024 23:43:16-0700, Khem Raj wrote: > > configure uses PLATOFRM_TRIPLET derive many variabled e.g. > > SOABI, EXT_SUFFIX etc. However, the check is for build system > > which is not

Re: [OE-core] [PATCH] ltp: upgrade 20240129 -> 20240524

2024-06-06 Thread Khem Raj
/recipes-extended/ltp/ltp/0001-sched_stress-Use-time_t-instead-of-long-for-type.patch > deleted file mode 100644 > index ae8dc8706e..00 > --- > a/meta/recipes-extended/ltp/ltp/0001-sched_stress-Use-time_t-instead-of-long-for-type.patch > +++ /dev/null > @@ -1,54 +0,

[OE-core] [PATCH v2] gcc: Fix wrong order of gcc include paths on musl systems

2024-06-06 Thread Khem Raj
switches prepend to append for musl systems. Signed-off-by: Khem Raj --- v2: Use a runtime check instead of build time check meta/recipes-devtools/gcc/gcc-14.1.inc| 1 + ...te-include-paths-on-musl-instead-of-.patch | 36 +++ 2 files changed, 37 insertions(+) create mode

[OE-core] [PATCH] gcc: Fix wrong order of gcc include paths on musl systems

2024-06-06 Thread Khem Raj
switches prepend to append for musl systems. Signed-off-by: Khem Raj --- meta/recipes-devtools/gcc/gcc-14.1.inc| 1 + ...te-include-paths-on-musl-instead-of-.patch | 35 +++ 2 files changed, 36 insertions(+) create mode 100644 meta/recipes-devtools/gcc/gcc/0026-Append-GCC

Re: [OE-core] [PATCH] linuxloader: add -armhf on arm only for TARGET_FPU 'hard'

2024-06-05 Thread Khem Raj
On Wed, Jun 5, 2024 at 2:52 AM Jonas Gorski via lists.openembedded.org wrote: > > There are two types of soft FPU options for arm, soft and softfp, and if > using the latter the wrong dynamic loader will be used. > > E.g. go will link against ld-linux-armhf.so.3, but libc6 will only ship > a

Re: [OE-core] [PATCH] python3-rpds-py: Create a symlink for cython module on musl

2024-06-05 Thread Khem Raj
On Mon, Jun 3, 2024 at 9:56 PM Khem Raj wrote: > > On Mon, Jun 3, 2024 at 10:49 AM Khem Raj wrote: > > > > On Mon, Jun 3, 2024 at 9:35 AM Richard Purdie > > wrote: > > > > > > On Mon, 2024-06-03 at 09:25 -0700, Khem Raj via lists.openembedd

[OE-core] [PATCH 1/2] python3: Check for host OS type instead of build OS

2024-06-05 Thread Khem Raj
. on musl/linux it gets linux-gnu whereas it should be linux-musl. Luckily, its fixed upstream, hence backported Signed-off-by: Khem Raj --- ...r-platform-triplet-detection-code-ad.patch | 498 ++ .../recipes-devtools/python/python3_3.12.3.bb | 1 + 2 files changed, 499

[OE-core] [PATCH 2/2] python3: Drop empty patch

2024-06-05 Thread Khem Raj
The fix brought by this patch is already part of python 3.12.3 therefore drop it. Signed-off-by: Khem Raj --- ...lize-struct-termios-before-calling-t.patch | 26 --- .../recipes-devtools/python/python3_3.12.3.bb | 1 - 2 files changed, 27 deletions(-) delete mode 100644 meta

Re: [OE-core] [RESENDv2][PATCH 2/2] insane: add patch-status to default ERROR_QA

2024-06-04 Thread Khem Raj
On Fri, May 31, 2024 at 4:01 PM Martin Jansa via lists.openembedded.org wrote: > > * it's enabled for patches in oe-core for very long time and I was using > it for many other layers as well, so most layers should be in good > shape Do other layers have the patches taken care of is what you

Re: [OE-core] [PATCH] python3-rpds-py: Create a symlink for cython module on musl

2024-06-03 Thread Khem Raj
On Mon, Jun 3, 2024 at 10:49 AM Khem Raj wrote: > > On Mon, Jun 3, 2024 at 9:35 AM Richard Purdie > wrote: > > > > On Mon, 2024-06-03 at 09:25 -0700, Khem Raj via lists.openembedded.org > > wrote: > > > loader expects it to be called with 'linux-gnu' e.g

Re: [OE-core] [PATCH] python3-rpds-py: Create a symlink for cython module on musl

2024-06-03 Thread Khem Raj
On Mon, Jun 3, 2024 at 9:35 AM Richard Purdie wrote: > > On Mon, 2024-06-03 at 09:25 -0700, Khem Raj via lists.openembedded.org > wrote: > > loader expects it to be called with 'linux-gnu' e.g > > rpds.cpython-312-x86_64-linux-musl.so is created with musl > > but

[OE-core] [PATCH] python3-rpds-py: Create a symlink for cython module on musl

2024-06-03 Thread Khem Raj
HashTrieMap ../../python3.12/site-packages/rpds/__init__.py:1: in from .rpds import * E ModuleNotFoundError: No module named 'rpds.rpds' ERROR: tests/test_hash_trie_map.py:tests/test_hash_trie_map.py Signed-off-by: Khem Raj --- .../recipes-devtools/python/python3-rpds-py_0.18.1.bb | 11

[OE-core] [PATCH] grub,grub-efi: Remove -mfpmath=sse on x86

2024-06-01 Thread Khem Raj
it in recipe Fixes build errors seen with clang/musl like on x86 error: the 'sse' unit is not supported with this instruction set Signed-off-by: Khem Raj --- meta/recipes-bsp/grub/grub2.inc | 4 1 file changed, 4 insertions(+) diff --git a/meta/recipes-bsp/grub/grub2.inc b/meta/recipes-bsp/grub/grub2

Re: [OE-core] [PATCH] site/x86_64-linux: add ac_cv_func_fnmatch_works

2024-05-30 Thread Khem Raj
On Thu, May 30, 2024 at 9:44 AM Dmitry Baryshkov via lists.openembedded.org wrote: > > Other arch-specific caches have ac_cv_func_fnmatch_works. Add it to > x86_64 cache too, otherwise cabextract fails to build ([1]) > > [1] >

Re: [OE-core] [kirkstone][PATCH] glibc: stable 2.35 branch updates

2024-05-30 Thread Khem Raj
Seems good to me On Thu, May 30, 2024 at 8:57 AM Hemraj, Deepthi via lists.openembedded.org wrote: > Regression testing is done and below are the results: > *after update: * > fail - 427 > pass -14368 > xpass - 18 > xfail - 48 > unsupported

Re: [OE-core][scarthgap][PATCH 1/2] iputils: splitting the ping6 as a package

2024-05-29 Thread Khem Raj
Hi Steve On Wed, May 29, 2024 at 7:26 AM Steve Sakoman via lists.openembedded.org wrote: > > I'm hesitant to take a packaging change in a stable branch. If others > would like to weigh in on this please speak up! > I look at this change as a bug fix for iputils to reflect the UI change they

Re: [OE-core] [PATCH 07/13] icu: upgrade 74-2 -> 75-1

2024-05-27 Thread Khem Raj
On Mon, May 27, 2024 at 1:26 PM Alexander Kanavin wrote: > On Mon, 27 May 2024 at 22:22, Khem Raj wrote: > >> harfbuzz resets that to c++11: > >> https://github.com/harfbuzz/harfbuzz/blob/main/meson.build#L7 > > > > > > I see. Thanks, ideally har

Re: [OE-core] [PATCH 07/13] icu: upgrade 74-2 -> 75-1

2024-05-27 Thread Khem Raj
On Mon, May 27, 2024 at 12:50 PM Alexander Kanavin wrote: > On Mon, 27 May 2024 at 21:10, Khem Raj wrote: > > > +# Remove when https://github.com/harfbuzz/harfbuzz/issues/4671 is > resolved > > > +EXTRA_OEMESON += "-Dcpp_std=c++17> > > GCC 13+ and clang

Re: [OE-core] [PATCH 07/13] icu: upgrade 74-2 -> 75-1

2024-05-27 Thread Khem Raj
On Mon, May 27, 2024 at 11:12 AM Alexander Kanavin via lists.openembedded.org wrote: > > From: Alexander Kanavin > > License-update: copyright years > > Signed-off-by: Alexander Kanavin > --- > meta/recipes-graphics/harfbuzz/harfbuzz_8.5.0.bb | 3 +++ >

Re: [OE-core][scarthgap][PATCH 1/6] llvm: Upgrade to 18.1.4

2024-05-25 Thread Khem Raj
I am fine with all 3 patches backported in this series. On Sat, May 25, 2024 at 3:49 AM Peter Marko wrote: > > From: Khem Raj > > From: Khem Raj > > Brings following fixes > > * e6c3289804a6 [CMake][Release] Disable PGO (#88465) (#89000) > * 028e425f86cc [MIPS

Re: [OE-core] [scarthgap 0/2] Toolchain fixes for Scarthgap

2024-05-24 Thread Khem Raj
These look fine to me On Fri, May 24, 2024 at 1:12 PM Mark Hatle via lists.openembedded.org wrote: > > Two different toolchain fixes for Scarthgap. > > The binutils change was found in a AMD/Xilinx specific build script that > attempts to disassemble some code as part of a firmware setup. This

[OE-core] [PATCH v2] systemd.bbclass: Clarify error message

2024-05-23 Thread Khem Raj
this to be in PACKAGES Signed-off-by: Khem Raj --- v2: Improve a bit more meta/classes-recipe/systemd.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes-recipe/systemd.bbclass b/meta/classes-recipe/systemd.bbclass index 48b364c1d4d..0f7e3b5a081 100644 --- a/meta

[OE-core] [PATCH] systemd.bbclass: Clarify error message

2024-05-23 Thread Khem Raj
this to be in PACKAGES Signed-off-by: Khem Raj --- meta/classes-recipe/systemd.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes-recipe/systemd.bbclass b/meta/classes-recipe/systemd.bbclass index 48b364c1d4d..6043fb6667d 100644 --- a/meta/classes-recipe/systemd.bbclass

[OE-core] [PATCH 2/2] systemd-bootchart: Fix build on musl

2024-05-23 Thread Khem Raj
Signed-off-by: Khem Raj --- ...01-Define-portable-basename-function.patch | 59 +++ .../systemd-bootchart_235.bb | 1 + 2 files changed, 60 insertions(+) create mode 100644 meta/recipes-devtools/systemd-bootchart/systemd-bootchart/0001-Define-portable-basename

[OE-core] [PATCH 1/2] kexec-tools: Fix build with GCC-14 on musl

2024-05-23 Thread Khem Raj
Signed-off-by: Khem Raj --- ...linux-setup.c-Use-POSIX-basename-API.patch | 54 +++ .../kexec/kexec-tools_2.0.28.bb | 1 + 2 files changed, 55 insertions(+) create mode 100644 meta/recipes-kernel/kexec/kexec-tools/0001-x86-linux-setup.c-Use-POSIX-basename

Re: [oe-core][PATCH] gcc-runtime.inc: additionally remove libgomp.info-1 and libgomp.info-2

2024-05-22 Thread Khem Raj
On Wed, May 22, 2024 at 2:07 AM Alexander Kanavin via lists.openembedded.org wrote: > > I'm also curious in what scenarios is this needed, if the AB doesn't > have the issue? > I am guessing that texinfo is installed on build host and libgomp configure is finding it somehow > Alex > > On Wed,

Re: [OE-core] [PATCH 2/2] ofono: upgrade 2.4 -> 2.7

2024-05-22 Thread Khem Raj
pes-connectivity/ofono/ofono/0001-mbim-add-an-optional-TEMP_FAILURE_RETRY-macro-copy.patch > deleted file mode 100644 > index 8a5a300adc..00 > --- > a/meta/recipes-connectivity/ofono/ofono/0001-mbim-add-an-optional-TEMP_FAILURE_RETRY-macro-copy.patch > +++ /dev/null > @@

Re: [OE-core] [PATCH 24/42] llvm: upgrade 18.1.5 -> 18.1.6

2024-05-22 Thread Khem Raj
On Wed, May 22, 2024 at 2:15 AM wangmy via lists.openembedded.org wrote: > > From: Wang Mingyu > > Changelog: > == > - Fixes issues where LLVM is either generating the incorrect thunk for a > function with aligned parameters or didn't correctly pass through the > return value when

Re: [OE-core] [PATCH] gawk: fix readline detection

2024-05-21 Thread Khem Raj
On Tue, May 21, 2024 at 8:17 AM Ross Burton via lists.openembedded.org wrote: > > The code fragment used to detect readline in cross builds doesn't compile > cleanly with GCC 14.1, so readline is never enabled. > > Add missing includes so the test works, and readline can be enabled. > >

[OE-core] [PATCH] llvm: Upgrade to 18.1.6

2024-05-21 Thread Khem Raj
es for non-PGO builds (#89812) * f2c5a10e1f27 [CMake][Release] Add stage2-package target (#89517) * dd3aa6d0e9a8 Bump version to 18.1.6 (#91094) Signed-off-by: Khem Raj --- meta/recipes-devtools/llvm/{llvm_18.1.5.bb => llvm_18.1.6.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

[OE-core] [PATCH 1/2] kexec-tools: Fix build with GCC-14 on musl

2024-05-21 Thread Khem Raj
Signed-off-by: Khem Raj --- ...linux-setup.c-Use-POSIX-basename-API.patch | 54 +++ .../kexec/kexec-tools_2.0.28.bb | 1 + 2 files changed, 55 insertions(+) create mode 100644 meta/recipes-kernel/kexec/kexec-tools/0001-x86-linux-setup.c-Use-POSIX-basename

[OE-core] [PATCH 2/2] systemd-bootchart: Fix build on musl

2024-05-21 Thread Khem Raj
Signed-off-by: Khem Raj --- ...01-Define-portable-basename-function.patch | 59 +++ .../systemd-bootchart_235.bb | 1 + 2 files changed, 60 insertions(+) create mode 100644 meta/recipes-devtools/systemd-bootchart/systemd-bootchart/0001-Define-portable-basename

Re: [OE-core] [PATCH] cdrtools-native: fix build with gcc-14

2024-05-20 Thread Khem Raj
perhaps we should try to upgrade to https://sourceforge.net/projects/cdrtools/files/alpha/cdrtools-3.02a09.tar.bz2 this is last release of cdrtools and other distros are packaging it too, I am not sure if it will fix this issue but we might be able to share fixes. We should also explore options to

[OE-core] [PATCH v2] oeqa: Use gnu make as testcase for autotooled recipe

2024-05-19 Thread Khem Raj
-off-by: Khem Raj --- v2: Use gnu make instead of alisp meta/lib/oeqa/manual/crops.json | 16 ++-- meta/lib/oeqa/sdkext/cases/devtool.py | 5 ++--- 2 files changed, 8 insertions(+), 13 deletions(-) diff --git a/meta/lib/oeqa/manual/crops.json b/meta/lib/oeqa/manual/crops.json

Re: [OE-core] [PATCH 1/4] newlib: Use mcmodel=medany for RISCV64

2024-05-19 Thread Khem Raj
On Sat, May 18, 2024 at 10:48 PM Alejandro Hernandez Samaniego via lists.openembedded.org wrote: > > It was previously discovered that mcmodel=medany should be used for RISCV64, > however this was only being set for the applications themselves, but not for > newlib, this meant that we ended up

Re: [OE-core] [PATCH] binutils: stable 2.42 branch updates.

2024-05-17 Thread Khem Raj
lgtm On Fri, May 17, 2024 at 9:14 AM wrote: > > From: Sundeep KOKKONDA > > Below commits on binutils-2.42 stable branch are updated. > 6224493e457 Re: PR26978, Inconsistency for strong foo@v1 and weak foo@@v1 > d125f967537 hppa: Implement PA 2.0 symbolic relocations for long displacements >

Re: [OE-core] [scarthgap][PATCH] glibc: stable 2.39 branch updates.

2024-05-17 Thread Khem Raj
On Fri, May 17, 2024 at 9:33 AM Sundeep KOKKONDA via lists.openembedded.org wrote: > > Regression testing is done and below are the results: > > Before glibc update: > - > Recipe | Passed | Failed | Skipped | >

Re: [OE-core][PATCH v2] glibc: correct license

2024-05-16 Thread Khem Raj
On Wed, May 15, 2024 at 10:29 PM Martin Jansa via lists.openembedded.org wrote: > > Hi Peter, > > what about BSD-4-Clause-UC, BSD-3-Clause, ISC licenses included in glibc. > > I've suggested to add them long time ago in: >

Re: [OE-core] [PATCH 10/13] iptables: remove unneeded 0002-iptables-xshared.h-add-missing-sys.types.h-include.patch

2024-05-16 Thread Khem Raj
On Thu, May 16, 2024 at 4:27 AM Alexander Kanavin via lists.openembedded.org wrote: > > From: Alexander Kanavin > > Somewhere on the way it ceased to be necessary. Thats due it being applied upstream [1] so mentioning that is perhaps going to qualify this a bit more. [1]

[OE-core] [PATCH] kexec-tools: Fix build with GCC-14 on musl

2024-05-15 Thread Khem Raj
Signed-off-by: Khem Raj --- ...linux-setup.c-Use-POSIX-basename-API.patch | 54 +++ .../kexec/kexec-tools_2.0.28.bb | 1 + 2 files changed, 55 insertions(+) create mode 100644 meta/recipes-kernel/kexec/kexec-tools/0001-x86-linux-setup.c-Use-POSIX-basename

Re: [OE-core] [PATCH v2 07/11] kea: Remove -fvisibility-inlines-hidden from C++ flags

2024-05-14 Thread Khem Raj
On Tue, May 14, 2024 at 8:25 AM Randy MacLeod wrote: > > On 2024-05-07 3:56 p.m., Alexander Kanavin via lists.openembedded.org wrote: > > On Tue, 7 May 2024 at 18:13, Khem Raj wrote: > > Firstly I am inclined towards removing it if we can, since I think it should > be

[OE-core] [PATCH] openssl: Fix build on riscv

2024-05-13 Thread Khem Raj
GCC-14 unearths this bug which is already fixed upstream so backport it Signed-off-by: Khem Raj --- ...Implement-riscv_vlen_asm-for-riscv32.patch | 43 +++ .../openssl/openssl_3.3.0.bb | 1 + 2 files changed, 44 insertions(+) create mode 100644 meta/recipes

[OE-core] [PATCH v3] valgrind: Upgrade to 3.23.0

2024-05-13 Thread Khem Raj
?id=XX where XX is the bug number as listed above. Signed-off-by: Khem Raj --- v2: Fix gcc-14 errors compiling thumb2/-O0 v3: Update patch status pending -> submitted ...rn-a-valid-exit_code-from-vg_regtest.patch | 7 +- ...e-Drop-setting-mcpu-cortex-a8-on-arm.patch | 40 .../0001-d

Re: [OE-core] [PATCH v2] valgrind: Upgrade to 3.23.0

2024-05-13 Thread Khem Raj
On Mon, May 13, 2024 at 12:06 AM Alexander Kanavin wrote: > > On Sun, 12 May 2024 at 22:19, Khem Raj wrote: > >> Please no pending patches. Submit here: > >> https://bugs.kde.org/enter_bug.cgi?product=valgrind > > > > > > I am aware of it and it’

Re: [OE-core] [PATCH v2] valgrind: Upgrade to 3.23.0

2024-05-12 Thread Khem Raj
On Sun, May 12, 2024 at 11:51 AM Alexander Kanavin wrote: > On Sat, 11 May 2024 at 18:22, Khem Raj via lists.openembedded.org > wrote: > > +From b17b6d7d3a65c14f91f090f3f4f9898d6fa3a9e4 Mon Sep 17 00:00:00 2001 > > +From: Khem Raj > > +Date: Fri, 10 May 2024 16:27:34 -0

[OE-core] [PATCH v2] valgrind: Upgrade to 3.23.0

2024-05-11 Thread Khem Raj
?id=XX where XX is the bug number as listed above. Signed-off-by: Khem Raj --- v2: Fix gcc-14 errors compiling thumb2/-O0 ...rn-a-valid-exit_code-from-vg_regtest.patch | 7 +- ...e-Drop-setting-mcpu-cortex-a8-on-arm.patch | 40 .../0001-docs-Disable-manual-validation.patch | 7 +- ..

[OE-core] [PATCH] valgrind: Upgrade to 3.23.0

2024-05-10 Thread Khem Raj
?id=XX where XX is the bug number as listed above. Signed-off-by: Khem Raj --- ...rn-a-valid-exit_code-from-vg_regtest.patch | 7 +- .../0001-docs-Disable-manual-validation.patch | 7 +- ...etting-mcpu-to-cortex-a8-on-arm-arch.patch | 40 +--- ...check-tests-Fix-timerfd-syscall-te

[OE-core] [PATCH V2] linux-yocto: Enable team net driver

2024-05-09 Thread Khem Raj
Its needed to run libteam ptests Signed-off-by: Khem Raj Cc: Bruce Ashfield --- v2: Add comments in recipe on reason to add it meta/recipes-kernel/linux/linux-yocto_6.6.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-kernel/linux/linux-yocto_6.6.bb b/meta/recipes-kernel

[OE-core] [PATCH] strace: Use locale-base-en-us for locale

2024-05-08 Thread Khem Raj
locale-base-en-us is available on musl as well therefore, not need to make it glibc specific anymore. Signed-off-by: Khem Raj --- meta/recipes-devtools/strace/strace_6.8.bb | 6 +- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/meta/recipes-devtools/strace/strace_6.8.bb b

[OE-core] [PATCH] strace: Use locale-base-en-us for locale

2024-05-08 Thread Khem Raj
locale-base-en-us is available on musl as well therefore, not need to make it glibc specific anymore. Signed-off-by: Khem Raj --- meta/recipes-devtools/strace/strace_6.8.bb | 6 +- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/meta/recipes-devtools/strace/strace_6.8.bb b

[OE-core] [PATCH] enchant2: Disable incompatible-pointer-types warning as error

2024-05-08 Thread Khem Raj
This fixes build with GCC-14 Signed-off-by: Khem Raj --- meta/recipes-support/enchant/enchant2_2.7.2.bb | 4 1 file changed, 4 insertions(+) diff --git a/meta/recipes-support/enchant/enchant2_2.7.2.bb b/meta/recipes-support/enchant/enchant2_2.7.2.bb index 08998dd48fe..7e175852556 100644

Re: [OE-core] [PATCH] linux-yocto: Enable team net driver

2024-05-08 Thread Khem Raj
On Wed, May 8, 2024 at 8:16 PM Bruce Ashfield wrote: > > On Wed, May 8, 2024 at 9:22 PM Khem Raj wrote: > > > > Signed-off-by: Khem Raj > > Cc: Bruce Ashfield > > --- > > meta/recipes-kernel/linux/linux-yocto_6.6.bb | 1 + > > 1 file changed, 1 inse

[OE-core] [PATCH V2] zip: Fix build with gcc-14

2024-05-08 Thread Khem Raj
-unix.c-Do-not-redefine-DIR-as-FILE.patch which is now unnecessary. Signed-off-by: Zoltán Böszörményi Signed-off-by: Khem Raj --- v2: Redo the patches differently ...e-dirent.h-for-closedir-opendir-APIs.patch | 45 +++ ...2-unix.c-Do-not-redefine-DIR-as-FILE.patch | 35 ---

[OE-core] [PATCH V2 3/4] ltp: Fix build with GCC-14

2024-05-08 Thread Khem Raj
Signed-off-by: Khem Raj --- v2: Change the patch status to Backport ...-Use-time_t-instead-of-long-for-type.patch | 54 +++ meta/recipes-extended/ltp/ltp_20240129.bb | 1 + 2 files changed, 55 insertions(+) create mode 100644 meta/recipes-extended/ltp/ltp/0001

[OE-core] [PATCH V2 4/4] iproute2: Fix build with GCC-14

2024-05-08 Thread Khem Raj
Signed-off-by: Khem Raj --- V2: Rebased meta/recipes-connectivity/iproute2/iproute2_6.8.0.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-connectivity/iproute2/iproute2_6.8.0.bb b/meta/recipes-connectivity/iproute2/iproute2_6.8.0.bb index 68f7611943f..24539e3d998 100644

[OE-core] [PATCH V2 1/4] python3: Treat UID/GID overflow as failure

2024-05-08 Thread Khem Raj
', 'test_extractall_none_uname', 'setUpClass', 'python3']} Signed-off-by: Khem Raj --- v2: Fix typo in subject ...e-treat-overflow-in-UID-GID-as-failu.patch | 40 +++ .../recipes-devtools/python/python3_3.12.3.bb | 1 + 2 files changed, 41 insertions

[OE-core] [PATCH V3 2/4] lrzsz connman-gnome libfm: ignore various issues fatal with gcc-14

2024-05-08 Thread Khem Raj
on ML (especially for -native with gcc-14 on host) cdrtools: https://lists.openembedded.org/g/openembedded-core/message/198899 syslinux: https://lists.openembedded.org/g/openembedded-core/message/198901 Signed-off-by: Martin Jansa Signed-off-by: Khem Raj --- v3: Drop zip as it has another fix

[OE-core] [PATCH] linux-yocto: Enable team net driver

2024-05-08 Thread Khem Raj
Signed-off-by: Khem Raj Cc: Bruce Ashfield --- meta/recipes-kernel/linux/linux-yocto_6.6.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-kernel/linux/linux-yocto_6.6.bb b/meta/recipes-kernel/linux/linux-yocto_6.6.bb index 71bfbf9e032..4503ec94ae9 100644 --- a/meta/recipes

Re: [OE-core] [scarthgap] psplash no longer working

2024-05-08 Thread Khem Raj
On Wed, May 8, 2024 at 3:07 AM Mike Looijmans via lists.openembedded.org wrote: > > I'm puzzled. > > Migrating from kirkstone to scarthgap, and psplash somehow broke. > > Systemd doesn't start is because "/usr/bin/psplash" is missing. > > Interestingly, the line that appears to be responsible for

[OE-core] [PATCH] llvm: Switch to using release tarballs

2024-05-08 Thread Khem Raj
git checkouts are in excess of 3G, which is not ideal for everyone to download/clone, instead switch to fetching release tarball which is ~126M as of 18.1.5 release Signed-off-by: Khem Raj --- .../llvm/{llvm_git.bb => llvm_18.1.5.bb}| 13 ++--- 1 file changed, 6 inserti

Re: [OE-core] [PATCH] oeqa/selftest/devtool: Fix for usrmerge in DISTRO_FEATURES

2024-05-07 Thread Khem Raj
On Tue, May 7, 2024 at 3:47 PM Richard Purdie via lists.openembedded.org wrote: > If usrmerge is in DISTRO_FEATURES, assumptions in one of the tests would > fail. Improve the test so it works in both cases. > > Signed-off-by: Richard Purdie > --- > meta/lib/oeqa/selftest/cases/devtool.py | 2

Re: [OE-core] [PATCH v2 07/11] kea: Remove -fvisibility-inlines-hidden from C++ flags

2024-05-07 Thread Khem Raj
On Tue, May 7, 2024 at 12:56 PM Alexander Kanavin wrote: > > On Tue, 7 May 2024 at 18:13, Khem Raj wrote: > > Firstly I am inclined towards removing it if we can, since I think it > > should be > > packages to decide to use it, then they can maintain it better from testi

Re: [OE-core][kirkstone][PATCH] xz: Update LICENSE variable for xz packages

2024-05-07 Thread Khem Raj
On Mon, May 6, 2024 at 8:33 AM Marta Rybczynska via lists.openembedded.org wrote: > > > > On Mon, 6 May 2024, 13:09 nikhil via lists.openembedded.org, > wrote: >> >> Update LICENSE defined for xz packages to match the license >> information provided in the xz COPYING file. >> >> The License

  1   2   3   4   5   6   7   8   9   10   >