Re: [OE-core] [PATCH v2 3/3] bitbake.conf: add debug symbol for sdk

2023-06-23 Thread Maxime Roussin-Bélanger
nativesdk dgb/src package you need to add that flag, so instead of modifying the `BUILDSDK_CPPFLAGS`, it should probably be documented. Do you have any pointers where it could be documented? Max. > > On Thu, 22 Jun 2023 at 19:11, Maxime Roussin-Bélanger > wrote: > > > > H

Re: [OE-core] [PATCH v2 2/3] insane: ignore nativesdk-${PN}-src host contaminated issue

2023-06-23 Thread Maxime Roussin-Bélanger
On Fri, Jun 23, 2023 at 3:53 AM Alexander Kanavin wrote: > > On Thu, 22 Jun 2023 at 20:04, Maxime Roussin-Bélanger > wrote: > > > I'm not sure I understand this. The check is to ensure build process > > > works as it should, specifically to prevent build h

Re: [OE-core] [PATCH v2 2/3] insane: ignore nativesdk-${PN}-src host contaminated issue

2023-06-22 Thread Maxime Roussin-Bélanger
e > packages are installed, but it matters for correctness of the build. > > Alex Maybe I don't get how this check is done because everything in the TMPDIR is owned by the user running bitbake. Max > > On Thu, 22 Jun 2023 at 18:20, Maxime Roussin-Bélanger > wrote: > &g

Re: [OE-core] [PATCH v2 3/3] bitbake.conf: add debug symbol for sdk

2023-06-22 Thread Maxime Roussin-Bélanger
. Just > slightly further down you can see that BUILDSDK_CFLAGS pulls in > BUILD_OPTIMIZATION, which sets -g if you enable DEBUG_BUILD in your > config. > > Alex > > On Thu, 22 Jun 2023 at 18:20, Maxime Roussin-Bélanger > wrote: > > > > From: Maxime Roussin-Belanger >

Re: [OE-core] [PATCH v2 2/3] insane: ignore nativesdk-${PN}-src host contaminated issue

2023-06-22 Thread Maxime Roussin-Bélanger
e > packages are installed, but it matters for correctness of the build. > > Alex Maybe I don't get how this check is done because everything in the TMPDIR is owned by the user running bitbake. Max > > On Thu, 22 Jun 2023 at 18:20, Maxime Roussin-Bélanger > wrote: > &g

[OE-core] [PATCH v2 3/3] bitbake.conf: add debug symbol for sdk

2023-06-22 Thread Maxime Roussin-Bélanger
From: Maxime Roussin-Belanger Without adding debug flag nativesdk dbg package is not packaged since there is no debugging information Signed-off-by: Maxime Roussin-Belanger --- v2: New commit meta/conf/bitbake.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[OE-core] [PATCH v2 2/3] insane: ignore nativesdk-${PN}-src host contaminated issue

2023-06-22 Thread Maxime Roussin-Bélanger
From: Maxime Roussin-Belanger nativesdk-${PN}-src will be installed to a different machine and files ownership will change at install. Since the ownership will change based on how the user will install the sdk there is no point in checking ownership Signed-off-by: Maxime Roussin-Belanger ---

[OE-core] [PATCH v2 1/3] package: fix src packaging path for nativesdk

2023-06-22 Thread Maxime Roussin-Bélanger
From: Maxime Roussin-Belanger Directory tree doesn't contain the correct structure when packaging for source files for the sdk. Since the structure is incorrect, they won't be part of the installed sdk. Having source files in nativesdk is necessary when using it as a development sysroot for

[OE-core] [PATCH] package: fix src packaging path for nativesdk

2023-06-20 Thread Maxime Roussin-Bélanger
From: Maxime Roussin-Belanger Directory tree doesn't contain the correct structure when packaging for source files for the sdk. Since the structure is incorrect, they won't be part of the installed sdk. Having source files in nativesdk is necessary when using it as a development sysroot for

Re: [OE-core] [PATCH] mesa: fix runpath with native llvm-config in target sysroot

2022-11-09 Thread Maxime Roussin-Bélanger
On Wed, Nov 9, 2022 at 4:23 PM Alexandre Belloni < alexandre.bell...@bootlin.com> wrote: > On 09/11/2022 16:04:11-0500, Maxime Roussin-Bélanger wrote: > > Hi, (sorry for 2nd message Alex, forgot to cc the list) > > > > On Wed, Nov 9, 2022 at 3:48 PM Alexandre B

Re: [OE-core] [PATCH] mesa: fix runpath with native llvm-config in target sysroot

2022-11-09 Thread Maxime Roussin-Bélanger
Hi, (sorry for 2nd message Alex, forgot to cc the list) On Wed, Nov 9, 2022 at 3:48 PM Alexandre Belloni < alexandre.bell...@bootlin.com> wrote: > Hello, > > On 08/11/2022 22:04:44-0500, Maxime Roussin-Bélanger wrote: > > From: Maxime Roussin-Bélanger > > > >

[OE-core] [PATCH] mesa: fix runpath with native llvm-config in target sysroot

2022-11-08 Thread Maxime Roussin-Bélanger
From: Maxime Roussin-Bélanger llvm-config is copied from native to target sysroot, it shouldn't be allowed to use target shared libraries when it loads. Remove all runpath so it uses shared library from host system since native llvm-config is compiled with hosttools compiler. Signed-off

[OE-core] [PATCH v3] libffi: fix native build being not portable

2022-06-21 Thread Maxime Roussin-Bélanger
From: Maxime Roussin-Bélanger Without `--with-gcc-arch=generic` libffi looks up the cpuid to automatically determine which mtune/march to use. This makes the native sstate-cache unuseable since it's possible to have a newer cpu building the recipe and the library being pulled from another

[OE-core] [PATCH v2] libffi: fix native build being not portable

2022-06-21 Thread Maxime Roussin-Bélanger
From: Maxime Roussin-Bélanger Without `--with-gcc-arch=generic` libffi looks up the cpuid to automatically determine which mtune/march to use. This makes the native sstate-cache unuseable since it's possible to have a newer cpu building the recipe and the library being pulled from another

[OE-core] [PATCH] libffti: fix native build being not portable

2022-06-21 Thread Maxime Roussin-Bélanger
From: Maxime Roussin-Bélanger Without `--with-gcc-arch=generic` libffi looks up the cpuid to automatically determine which mtune/march to use. This makes the native sstate-cache unuseable since it's possible to have a newer cpu building the recipe and the library being pulled from another

[OE-core] [PATCH] meta: add missing descriptions in some support recipes

2020-12-15 Thread Maxime Roussin-Bélanger
Signed-off-by: Maxime Roussin-Bélanger --- meta/recipes-support/apr/apr_1.7.0.bb| 4 meta/recipes-support/aspell/aspell_0.60.8.bb | 4 meta/recipes-support/atk/at-spi2-core_2.38.0.bb | 2 ++ meta/recipes-support/attr/acl_2.2.53.bb

Re: [OE-core] [PATCH 1/2] python3-pathtools: add a recipe

2020-05-27 Thread Maxime Roussin-Bélanger
Hello! On Wed, May 27, 2020 at 5:49 AM Richard Purdie < richard.pur...@linuxfoundation.org> wrote: > > On Tue, 2020-05-26 at 01:12 -0400, Maxime Roussin-Bélanger wrote: > > Signed-off-by: Maxime Roussin-Bélanger > > --- > > .../python/python3-pathtoo

[OE-core] [PATCH 1/2] python3-pathtools: add a recipe

2020-05-25 Thread Maxime Roussin-Bélanger
Signed-off-by: Maxime Roussin-Bélanger --- .../python/python3-pathtools_0.1.2.bb | 13 + 1 file changed, 13 insertions(+) create mode 100644 meta/recipes-devtools/python/python3-pathtools_0.1.2.bb diff --git a/meta/recipes-devtools/python/python3-pathtools_0.1.2.bb b

[OE-core] [PATCH 2/2] python3-watchdog: add a recipe

2020-05-25 Thread Maxime Roussin-Bélanger
Signed-off-by: Maxime Roussin-Bélanger --- .../python/python3-watchdog_0.10.2.bb| 16 1 file changed, 16 insertions(+) create mode 100644 meta/recipes-devtools/python/python3-watchdog_0.10.2.bb diff --git a/meta/recipes-devtools/python/python3-watchdog_0.10.2.bb b

Re: [OE-core] [PATCH] wpa-supplicant: add virtual supplicant

2020-02-13 Thread Maxime Roussin-Bélanger
On Thu, Feb 13, 2020 at 11:00 AM Alexander Kanavin wrote: > > On Thu, 13 Feb 2020 at 16:55, Maxime Roussin-Bélanger < maxime.roussinbelan...@gmail.com> wrote: >> >> PACKAGECONFIG[iwd] = "--enable-iwd, --disable-wifi, iwd, iwd" >> PACKAGECONFIG[wpa-supplican

Re: [OE-core] [PATCH] wpa-supplicant: add virtual supplicant

2020-02-13 Thread Maxime Roussin-Bélanger
On Thu, Feb 13, 2020 at 10:27 AM Richard Purdie < richard.pur...@linuxfoundation.org> wrote: > > On Thu, 2020-02-13 at 10:22 -0500, Maxime Roussin-Bélanger wrote: > > On Thu, Feb 13, 2020 at 9:24 AM Richard Purdie < > > richard.pur...@linuxfoundation.org> wr

Re: [OE-core] [PATCH] wpa-supplicant: add virtual supplicant

2020-02-13 Thread Maxime Roussin-Bélanger
On Thu, Feb 13, 2020 at 9:24 AM Richard Purdie < richard.pur...@linuxfoundation.org> wrote: > > On Mon, 2020-02-10 at 16:42 -0500, Maxime Roussin-Bélanger wrote: > > There is a second supplicant raising, iwd. User should be > > able to switch between wpa-supplican

[OE-core] [PATCH] wpa-supplicant: add virtual supplicant

2020-02-10 Thread Maxime Roussin-Bélanger
There is a second supplicant raising, iwd. User should be able to switch between wpa-supplicant and iwd. Let's provide a virtual package. ConnMan, systemd-networkd and NetworkManager supports iwd. Signed-off-by: Maxime Roussin-Bélanger --- meta/recipes-connectivity/wpa-supplicant/wpa

Re: [OE-core] [PATCH] meta: gdk-pixbuf: add man packageconfig

2020-01-14 Thread Maxime Roussin-Bélanger
The correct way to configure this is to inherit manpages class, and name the option 'manpages' as well. > > Alex > > On Mon, 13 Jan 2020 at 22:10, Maxime Roussin-Bélanger < maxime.roussinbelan...@gmail.com> wrote: >> >> The current default for the meson configuration is to bu

[OE-core] [PATCH] meta: gdk-pixbuf: add man packageconfig

2020-01-13 Thread Maxime Roussin-Bélanger
-by: Maxime Roussin-Bélanger --- meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.40.0.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.40.0.bb b/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.40.0.bb index 699c4ecd0b..f6cc25cd8c 100644 --- a/meta/recipes

[OE-core] [PATCH] meta: add missing description for some recipes in graphics

2019-11-06 Thread Maxime Roussin-Bélanger
Signed-off-by: Maxime Roussin-Bélanger --- meta/recipes-graphics/clutter/clutter-1.0.inc| 3 +++ meta/recipes-graphics/cogl/cogl-1.0.inc | 4 meta/recipes-graphics/libepoxy/libepoxy_1.5.3.bb | 4 meta/recipes-graphics/libmatchbox

[OE-core] [PATCH v2 2/2] meta: add missing description in recipes-gnome

2019-10-23 Thread Maxime Roussin-Bélanger
Remove some trailing whitespace Signed-off-by: Maxime Roussin-Bélanger --- Changes in v2: - Fix missing \ in libsecret meta/recipes-gnome/gcr/gcr_3.28.1.bb | 3 +++ meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.38.2.bb| 3 +++ meta/recipes-gnome/gnome

[OE-core] [PATCH v2 1/2] meta: update and add missing homepage/bugtracker links

2019-10-23 Thread Maxime Roussin-Bélanger
Signed-off-by: Maxime Roussin-Bélanger --- Changes in v2: - Nothing meta/recipes-gnome/epiphany/epiphany_3.34.1.bb| 1 + meta/recipes-gnome/gcr/gcr_3.28.1.bb | 4 ++-- meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.38.2.bb| 4 ++-- meta

[OE-core] [PATCH 2/2] meta: add missing description in recipes-gnome

2019-10-22 Thread Maxime Roussin-Bélanger
From: Maxime Roussin-Belanger Signed-off-by: Maxime Roussin-Bélanger --- meta/recipes-gnome/gcr/gcr_3.28.1.bb | 3 +++ meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.38.2.bb| 3 +++ meta/recipes-gnome/gnome/gconf_3.2.6.bb | 3 +++ .../gobject

[OE-core] [PATCH 1/2] meta: update and add missing homepage/bugtracker links for gnome recipes

2019-10-22 Thread Maxime Roussin-Bélanger
From: Maxime Roussin-Belanger Gnome has moved to gitlab in 2018. Some of the homepage urls didn't exist anymore. Signed-off-by: Maxime Roussin-Bélanger --- meta/recipes-gnome/epiphany/epiphany_3.34.1.bb| 1 + meta/recipes-gnome/gcr/gcr_3.28.1.bb | 4

[OE-core] [PATCH 2/2] meta: add missing description in recipes-extended

2019-10-10 Thread Maxime Roussin-Bélanger
Signed-off-by: Maxime Roussin-Bélanger --- meta/recipes-extended/cups/cups.inc | 4 meta/recipes-extended/timezone/timezone.inc | 2 ++ meta/recipes-extended/wget/wget.inc | 5 + 3 files changed, 11 insertions(+) diff --git a/meta/recipes-extended/cups/cups.inc b/meta

[OE-core] [PATCH 1/2] shadow: update homepage and bugtracker

2019-10-10 Thread Maxime Roussin-Bélanger
The previous homepage and issue tracker is no longer available. Remove some trailing whitespace Signed-off-by: Maxime Roussin-Bélanger --- meta/recipes-extended/shadow/shadow-sysroot_4.6.bb | 6 +++--- meta/recipes-extended/shadow/shadow.inc| 8 2 files changed, 7

[OE-core] [PATCH] meta: simplify over descriptive descriptions in devtools

2019-10-08 Thread Maxime Roussin-Bélanger
fix commandline -> command-line typo. according to: https://en.wikipedia.org/wiki/Command-line_interface https://wiki.debian.org/Apt Signed-off-by: Maxime Roussin-Bélanger --- meta/recipes-devtools/apt/apt.inc | 2 +- meta/recipes-devtools/cmake/cmake.inc | 4 +--- meta/reci

Re: [OE-core] [PATCH] meta: add missing some description in devtools

2019-10-08 Thread Maxime Roussin-Bélanger
should probably focus on the next recipes. Max. On Tue, Oct 8, 2019 at 8:16 PM Randy MacLeod wrote: > On 10/7/19 10:45 PM, Maxime Roussin-Bélanger wrote: > ... > > > -RPM_NO_CHROOT_FOR_SCRIPTS=1 > > > +RPM_NO_CHROOT_FOR_SCRIPTS=1

Re: [OE-core] [PATCH] meta: add missing some description in devtools

2019-10-07 Thread Maxime Roussin-Bélanger
Thanks for the review! On Mon, Oct 7, 2019 at 2:12 PM Randy MacLeod wrote: > On 10/2/19 4:52 PM, Maxime Roussin-Bélanger wrote: > > Signed-off-by: Maxime Roussin-Bélanger > > > --- > > meta/recipes-devtools/apt/apt.inc | 3 +++ > > meta/re

[OE-core] [PATCH] meta: add missing some description in devtools

2019-10-02 Thread Maxime Roussin-Bélanger
Signed-off-by: Maxime Roussin-Bélanger --- meta/recipes-devtools/apt/apt.inc | 3 +++ meta/recipes-devtools/cmake/cmake.inc | 6 ++ meta/recipes-devtools/dejagnu/dejagnu_1.6.2.bb | 2 ++ meta/recipes-devtools/dnf/dnf_4.2.2.bb | 5 - meta/recipes-devtools

[OE-core] [PATCH v3] meta: add missing descriptions and homepage in bsp

2019-09-12 Thread Maxime Roussin-Bélanger
Signed-off-by: Maxime Roussin-Bélanger --- Changes in v3: - Change some forward slashes to backslashes Changes in v2: - Rewrite acpid description to be more meaningful - Change grub-bootconf description meta/recipes-bsp/acpid/acpid.inc | 6 ++ meta

[OE-core] [PATCH v2] meta: add missing descriptions and homepage in bsp

2019-09-03 Thread Maxime Roussin-Bélanger
Signed-off-by: Maxime Roussin-Bélanger --- Changes in v2: - Rewrite acpid description to be more meaningful - Change grub-bootconf description meta/recipes-bsp/acpid/acpid.inc | 6 ++ meta/recipes-bsp/formfactor/formfactor_0.0.bb | 3 +++ meta/recipes

[OE-core] [PATCH] meta: add missing descriptions and homepage in bsp

2019-08-29 Thread Maxime Roussin-Bélanger
Signed-off-by: Maxime Roussin-Bélanger --- meta/recipes-bsp/acpid/acpid.inc | 5 + meta/recipes-bsp/formfactor/formfactor_0.0.bb | 3 +++ meta/recipes-bsp/grub/grub-bootconf_1.00.bb | 5 + meta/recipes-bsp/u-boot/u-boot-common.inc | 4 meta/recipes-bsp/usbinit

[OE-core] [thud][PATCH] libedit: Add native and nativesdk to BBCLASSEXTEND

2019-08-22 Thread Maxime Roussin-Bélanger
To keep support of meta-clang support on thud branch. It depends on libedit native --- meta-oe/recipes-devtools/libedit/libedit_20180525-3.1.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-oe/recipes-devtools/libedit/libedit_20180525-3.1.bb

[OE-core] [meta-oe][PATCH v2] python-matplotlib: Change download name

2018-03-01 Thread Maxime Roussin-Bélanger
Just having "v2.0.2.tar.gz" was causing problems with other similarly misconfigured packages. Signed-off-by: Maxime Roussin-Bélanger <maxime.roussinbelan...@gmail.com> --- meta-python/recipes-devtools/python/python-matplotlib_2.0.2.bb | 2 +- 1 file changed, 1 insertion(+), 1 d

[OE-core] [meta-oe][PATCH] python-matplotlib: Change download name

2018-03-01 Thread Maxime Roussin-Bélanger
gflags: change download name. Just having "v2.0.2.tar.gz" was causing problems with other similarly misconfigured packages. --- meta-python/recipes-devtools/python/python-matplotlib_2.0.2.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[OE-core] [PATCH v3] cmake: Use find_program if find_host_program is not available

2017-06-27 Thread Maxime Roussin-Bélanger
9b6c50771b6f30433c58fae03a51 Mon Sep 17 00:00:00 2001 +From: Maxime Roussin-Bélanger <maxime.roussinbelan...@gmail.com> +Date: Mon, 26 Jun 2017 11:30:07 -0400 +Subject: [PATCH] cmake: Use find_program if find_host_program is not + available + +CMake does not define the `find_host_progr

[OE-core] [PATCH v2 1/1] cmake: Use find_program if find_host_program is not available

2017-06-27 Thread Maxime Roussin-Bélanger
[https://gitlab.kitware.com/cmake/cmake/merge_requests/1009] - Will be in 3.10 Signed-off-by: Maxime Roussin-Bélanger <maxime.roussinbelan...@gmail.com> --- Changes in v2: - Add upstream-status meta/recipes-devtools/cmake/cmake.inc | 1 + ...e-find_p

[OE-core] [PATCH v2 0/1] cmake: Use find_program if find_host_program is not available

2017-06-27 Thread Maxime Roussin-Bélanger
-selftest (2017-06-23 14:14:17 +0100) are available in the git repository at: git://git.yoctoproject.org/poky-contrib mroussin/fix_cmake_find_cuda_not_android http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=mroussin/fix_cmake_find_cuda_not_android Maxime Roussin-Bélanger (1): cmake

[OE-core] [PATCH] cmake: Use find_program if find_host_program is not available

2017-06-26 Thread Maxime Roussin-Bélanger
if-find_host_program-is-no.patch new file mode 100644 index 000..8a61f1f --- /dev/null +++ b/meta/recipes-devtools/cmake/cmake/0001-FindCUDA-Use-find_program-if-find_host_program-is-no.patch @@ -0,0 +1,36 @@ +From 46d25e782ebd9b6c50771b6f30433c58fae03a51 Mon Sep 17 00:00:00 2001 +From: Maxime R