* [PATCH 1/2] binutils-cross-canadian: Add missing perl mpodules to RDEPENDS
@ 2025-09-30 12:39 Harish.Sadineni
2025-09-30 12:39 ` [PATCH 2/2] Revert "binutils: Add missing perl modules to RDEPENDS for nativsdk variant" Harish.Sadineni
` (2 more replies)
0 siblings, 3 replies; 9+ messages in thread
From: Harish.Sadineni @ 2025-09-30 12:39 UTC (permalink / raw)
To: openembedded-core; +Cc: Sundeep.Kokkonda
From: Harish Sadineni <Harish.Sadineni@windriver.com>
In sdk while running "x86_64-poky-linux-gp-display-html --help" gives
following error:
$sdk/sysroots/x86_64-pokysdk-linux/usr/bin/x86_64-poky-linux->
./x86_64-poky-linux-gp-display-html --help
Can't locate bigint.pm in @INC (you may need to install the bigint module
By adding the following perl modules to RDEPENDS fixes the above errors:
nativesdk-perl-module-bignum
nativesdk-perl-module-bigint
nativesdk-perl-module-math-bigint
Signed-off-by: Harish Sadineni <Harish.Sadineni@windriver.com>
---
meta/recipes-devtools/binutils/binutils-cross-canadian.inc | 1 +
1 file changed, 1 insertion(+)
diff --git a/meta/recipes-devtools/binutils/binutils-cross-canadian.inc b/meta/recipes-devtools/binutils/binutils-cross-canadian.inc
index 7d7ffe92ce..9dc73fbdf1 100644
--- a/meta/recipes-devtools/binutils/binutils-cross-canadian.inc
+++ b/meta/recipes-devtools/binutils/binutils-cross-canadian.inc
@@ -5,6 +5,7 @@ PN = "binutils-cross-canadian-${TRANSLATED_TARGET_ARCH}"
BPN = "binutils"
DEPENDS = "flex-native bison-native virtual/nativesdk-cross-cc virtual/nativesdk-libc nativesdk-zlib nativesdk-gettext nativesdk-flex"
+RDEPENDS:${PN} += "nativesdk-perl-module-bignum nativesdk-perl-module-bigint nativesdk-perl-module-math-bigint"
EXTRA_OECONF += "--with-sysroot=${SDKPATH}/sysroots/${TUNE_PKGARCH}${TARGET_VENDOR}-${TARGET_OS} \
--enable-poison-system-directories \
"
--
2.49.0
^ permalink raw reply related [flat|nested] 9+ messages in thread* [PATCH 2/2] Revert "binutils: Add missing perl modules to RDEPENDS for nativsdk variant" 2025-09-30 12:39 [PATCH 1/2] binutils-cross-canadian: Add missing perl mpodules to RDEPENDS Harish.Sadineni @ 2025-09-30 12:39 ` Harish.Sadineni 2025-09-30 13:47 ` [OE-core] [PATCH 1/2] binutils-cross-canadian: Add missing perl mpodules to RDEPENDS Richard Purdie 2025-10-02 14:04 ` Mathieu Dubois-Briand 2 siblings, 0 replies; 9+ messages in thread From: Harish.Sadineni @ 2025-09-30 12:39 UTC (permalink / raw) To: openembedded-core; +Cc: Sundeep.Kokkonda From: Harish Sadineni <Harish.Sadineni@windriver.com> The missing Perl modules are now provided by binutils-cross-canadian.inc. Including them again for nativesdk-gprofng is redudant, as the modules are already installed. This reverts commit a827c8133b99ed9e2aeb3c9933812bc2913a7bd1. Signed-off-by: Harish Sadineni <Harish.Sadineni@windriver.com> --- meta/recipes-devtools/binutils/binutils_2.45.bb | 4 ---- 1 file changed, 4 deletions(-) diff --git a/meta/recipes-devtools/binutils/binutils_2.45.bb b/meta/recipes-devtools/binutils/binutils_2.45.bb index 79bcac2025..dce3e39000 100644 --- a/meta/recipes-devtools/binutils/binutils_2.45.bb +++ b/meta/recipes-devtools/binutils/binutils_2.45.bb @@ -73,9 +73,5 @@ SRC_URI:append:class-nativesdk = " file://0003-binutils-nativesdk-Search-for-al USE_ALTERNATIVES_FOR:class-nativesdk = "" FILES:${PN}:append:class-nativesdk = " ${bindir}" -RDEPENDS:gprofng:class-nativesdk = " nativesdk-perl-module-bignum \ - nativesdk-perl-module-bigint \ - nativesdk-perl-module-math-bigint \ -" BBCLASSEXTEND = "native nativesdk" -- 2.49.0 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [OE-core] [PATCH 1/2] binutils-cross-canadian: Add missing perl mpodules to RDEPENDS 2025-09-30 12:39 [PATCH 1/2] binutils-cross-canadian: Add missing perl mpodules to RDEPENDS Harish.Sadineni 2025-09-30 12:39 ` [PATCH 2/2] Revert "binutils: Add missing perl modules to RDEPENDS for nativsdk variant" Harish.Sadineni @ 2025-09-30 13:47 ` Richard Purdie 2025-10-01 8:47 ` Harish Sadineni 2025-10-02 14:04 ` Mathieu Dubois-Briand 2 siblings, 1 reply; 9+ messages in thread From: Richard Purdie @ 2025-09-30 13:47 UTC (permalink / raw) To: Harish.Sadineni, openembedded-core; +Cc: Sundeep.Kokkonda On Tue, 2025-09-30 at 05:39 -0700, Sadineni, Harish via lists.openembedded.org wrote: > From: Harish Sadineni <Harish.Sadineni@windriver.com> > > In sdk while running "x86_64-poky-linux-gp-display-html --help" gives > following error: > $sdk/sysroots/x86_64-pokysdk-linux/usr/bin/x86_64-poky-linux-> > ./x86_64-poky-linux-gp-display-html --help > Can't locate bigint.pm in @INC (you may need to install the bigint module > > By adding the following perl modules to RDEPENDS fixes the above errors: > nativesdk-perl-module-bignum > nativesdk-perl-module-bigint > nativesdk-perl-module-math-bigint > > Signed-off-by: Harish Sadineni <Harish.Sadineni@windriver.com> > --- > meta/recipes-devtools/binutils/binutils-cross-canadian.inc | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/meta/recipes-devtools/binutils/binutils-cross-canadian.inc b/meta/recipes-devtools/binutils/binutils-cross-canadian.inc > index 7d7ffe92ce..9dc73fbdf1 100644 > --- a/meta/recipes-devtools/binutils/binutils-cross-canadian.inc > +++ b/meta/recipes-devtools/binutils/binutils-cross-canadian.inc > @@ -5,6 +5,7 @@ PN = "binutils-cross-canadian-${TRANSLATED_TARGET_ARCH}" > BPN = "binutils" > > DEPENDS = "flex-native bison-native virtual/nativesdk-cross-cc virtual/nativesdk-libc nativesdk-zlib nativesdk-gettext nativesdk-flex" > +RDEPENDS:${PN} += "nativesdk-perl-module-bignum nativesdk-perl-module-bigint nativesdk-perl-module-math-bigint" > EXTRA_OECONF += "--with-sysroot=${SDKPATH}/sysroots/${TUNE_PKGARCH}${TARGET_VENDOR}-${TARGET_OS} \ > --enable-poison-system-directories \ > " This is probably the right direction but shouldn't this be for the gprofng package rather than ${PN}? Cheers, Richard ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [OE-core] [PATCH 1/2] binutils-cross-canadian: Add missing perl mpodules to RDEPENDS 2025-09-30 13:47 ` [OE-core] [PATCH 1/2] binutils-cross-canadian: Add missing perl mpodules to RDEPENDS Richard Purdie @ 2025-10-01 8:47 ` Harish Sadineni 2025-10-01 9:57 ` Richard Purdie 0 siblings, 1 reply; 9+ messages in thread From: Harish Sadineni @ 2025-10-01 8:47 UTC (permalink / raw) To: Richard Purdie, openembedded-core; +Cc: Sundeep.Kokkonda [-- Attachment #1: Type: text/plain, Size: 2461 bytes --] On 9/30/2025 7:17 PM, Richard Purdie 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. > > On Tue, 2025-09-30 at 05:39 -0700, Sadineni, Harish via lists.openembedded.org wrote: >> From: Harish Sadineni<Harish.Sadineni@windriver.com> >> >> In sdk while running "x86_64-poky-linux-gp-display-html --help" gives >> following error: >> $sdk/sysroots/x86_64-pokysdk-linux/usr/bin/x86_64-poky-linux-> >> ./x86_64-poky-linux-gp-display-html --help >> Can't locate bigint.pm in @INC (you may need to install the bigint module >> >> By adding the following perl modules to RDEPENDS fixes the above errors: >> nativesdk-perl-module-bignum >> nativesdk-perl-module-bigint >> nativesdk-perl-module-math-bigint >> >> Signed-off-by: Harish Sadineni<Harish.Sadineni@windriver.com> >> --- >> meta/recipes-devtools/binutils/binutils-cross-canadian.inc | 1 + >> 1 file changed, 1 insertion(+) >> >> diff --git a/meta/recipes-devtools/binutils/binutils-cross-canadian.inc b/meta/recipes-devtools/binutils/binutils-cross-canadian.inc >> index 7d7ffe92ce..9dc73fbdf1 100644 >> --- a/meta/recipes-devtools/binutils/binutils-cross-canadian.inc >> +++ b/meta/recipes-devtools/binutils/binutils-cross-canadian.inc >> @@ -5,6 +5,7 @@ PN = "binutils-cross-canadian-${TRANSLATED_TARGET_ARCH}" >> BPN = "binutils" >> >> DEPENDS = "flex-native bison-native virtual/nativesdk-cross-cc virtual/nativesdk-libc nativesdk-zlib nativesdk-gettext nativesdk-flex" >> +RDEPENDS:${PN} += "nativesdk-perl-module-bignum nativesdk-perl-module-bigint nativesdk-perl-module-math-bigint" >> EXTRA_OECONF += "--with-sysroot=${SDKPATH}/sysroots/${TUNE_PKGARCH}${TARGET_VENDOR}-${TARGET_OS} \ >> --enable-poison-system-directories \ >> " > This is probably the right direction but shouldn't this be for the > gprofng package rather than ${PN}? Hi Richard, In the SDK at |$sdk/sysroots/x86_64-pokysdk-linux/usr/bin/x86_64-poky-linux|, the script |"x86_64-poky-linux-gp-display-html"| is not pulled or packaged by the gprofng package. Instead, it is installed as part of the binutils-cross-canadian package. Adding the perl module dependencies to gprofng**package**will not resolve this issue , it would be effective only if "nativesdk-gprofng" is explicitly installed by the user. Thanks, Harish > > Cheers, > > Richard [-- Attachment #2: Type: text/html, Size: 3812 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [OE-core] [PATCH 1/2] binutils-cross-canadian: Add missing perl mpodules to RDEPENDS 2025-10-01 8:47 ` Harish Sadineni @ 2025-10-01 9:57 ` Richard Purdie 2025-10-01 16:56 ` Khem Raj 0 siblings, 1 reply; 9+ messages in thread From: Richard Purdie @ 2025-10-01 9:57 UTC (permalink / raw) To: Harish Sadineni, openembedded-core; +Cc: Sundeep.Kokkonda On Wed, 2025-10-01 at 14:17 +0530, Harish Sadineni wrote: > On 9/30/2025 7:17 PM, Richard Purdie wrote: > On Tue, 2025-09-30 at 05:39 -0700, Sadineni, Harish via lists.openembedded.org wrote: > > > From: Harish Sadineni <Harish.Sadineni@windriver.com> > > > > > > In sdk while running "x86_64-poky-linux-gp-display-html --help" gives > > > following error: > > > $sdk/sysroots/x86_64-pokysdk-linux/usr/bin/x86_64-poky-linux-> > > > ./x86_64-poky-linux-gp-display-html --help > > > Can't locate bigint.pm in @INC (you may need to install the bigint module > > > > > > By adding the following perl modules to RDEPENDS fixes the above errors: > > > nativesdk-perl-module-bignum > > > nativesdk-perl-module-bigint > > > nativesdk-perl-module-math-bigint > > > > > > Signed-off-by: Harish Sadineni <Harish.Sadineni@windriver.com> > > > --- > > > meta/recipes-devtools/binutils/binutils-cross-canadian.inc | 1 + > > > 1 file changed, 1 insertion(+) > > > > > > diff --git a/meta/recipes-devtools/binutils/binutils-cross-canadian.inc b/meta/recipes-devtools/binutils/binutils-cross-canadian.inc > > > index 7d7ffe92ce..9dc73fbdf1 100644 > > > --- a/meta/recipes-devtools/binutils/binutils-cross-canadian.inc > > > +++ b/meta/recipes-devtools/binutils/binutils-cross-canadian.inc > > > @@ -5,6 +5,7 @@ PN = "binutils-cross-canadian-${TRANSLATED_TARGET_ARCH}" > > > BPN = "binutils" > > > > > > DEPENDS = "flex-native bison-native virtual/nativesdk-cross-cc virtual/nativesdk-libc nativesdk-zlib nativesdk-gettext nativesdk-flex" > > > +RDEPENDS:${PN} += "nativesdk-perl-module-bignum nativesdk-perl-module-bigint nativesdk-perl-module-math-bigint" > > > EXTRA_OECONF += "--with-sysroot=${SDKPATH}/sysroots/${TUNE_PKGARCH}${TARGET_VENDOR}-${TARGET_OS} \ > > > --enable-poison-system-directories \ > > > " > > > > > This is probably the right direction but shouldn't this be for the > > gprofng package rather than ${PN}? > > > Hi Richard, > > In the SDK at $sdk/sysroots/x86_64-pokysdk-linux/usr/bin/x86_64- > poky-linux, the script "x86_64-poky-linux-gp-display-html" is not > pulled or packaged by the gprofng package. > Instead, it is installed as part of the binutils-cross-canadian > package. > > Adding the perl module dependencies to gprofng package will not > resolve this issue , it would be effective only if "nativesdk- > gprofng" is explicitly installed by the user. > Fair enough. Should x86_64-poky-linux-gp-display-html not be part of the gprofng package though? Perhaps we should change it to be packaged there, then add the dependency to that? Cheers, Richard ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [OE-core] [PATCH 1/2] binutils-cross-canadian: Add missing perl mpodules to RDEPENDS 2025-10-01 9:57 ` Richard Purdie @ 2025-10-01 16:56 ` Khem Raj 2026-04-01 12:40 ` Harish Sadineni 0 siblings, 1 reply; 9+ messages in thread From: Khem Raj @ 2025-10-01 16:56 UTC (permalink / raw) To: richard.purdie; +Cc: Harish Sadineni, openembedded-core, Sundeep.Kokkonda On Wed, Oct 1, 2025 at 2:57 AM Richard Purdie via lists.openembedded.org <richard.purdie=linuxfoundation.org@lists.openembedded.org> wrote: > > On Wed, 2025-10-01 at 14:17 +0530, Harish Sadineni wrote: > > On 9/30/2025 7:17 PM, Richard Purdie wrote: > > On Tue, 2025-09-30 at 05:39 -0700, Sadineni, Harish via lists.openembedded.org wrote: > > > > From: Harish Sadineni <Harish.Sadineni@windriver.com> > > > > > > > > In sdk while running "x86_64-poky-linux-gp-display-html --help" gives > > > > following error: > > > > $sdk/sysroots/x86_64-pokysdk-linux/usr/bin/x86_64-poky-linux-> > > > > ./x86_64-poky-linux-gp-display-html --help > > > > Can't locate bigint.pm in @INC (you may need to install the bigint module > > > > > > > > By adding the following perl modules to RDEPENDS fixes the above errors: > > > > nativesdk-perl-module-bignum > > > > nativesdk-perl-module-bigint > > > > nativesdk-perl-module-math-bigint > > > > > > > > Signed-off-by: Harish Sadineni <Harish.Sadineni@windriver.com> > > > > --- > > > > meta/recipes-devtools/binutils/binutils-cross-canadian.inc | 1 + > > > > 1 file changed, 1 insertion(+) > > > > > > > > diff --git a/meta/recipes-devtools/binutils/binutils-cross-canadian.inc b/meta/recipes-devtools/binutils/binutils-cross-canadian.inc > > > > index 7d7ffe92ce..9dc73fbdf1 100644 > > > > --- a/meta/recipes-devtools/binutils/binutils-cross-canadian.inc > > > > +++ b/meta/recipes-devtools/binutils/binutils-cross-canadian.inc > > > > @@ -5,6 +5,7 @@ PN = "binutils-cross-canadian-${TRANSLATED_TARGET_ARCH}" > > > > BPN = "binutils" > > > > > > > > DEPENDS = "flex-native bison-native virtual/nativesdk-cross-cc virtual/nativesdk-libc nativesdk-zlib nativesdk-gettext nativesdk-flex" > > > > +RDEPENDS:${PN} += "nativesdk-perl-module-bignum nativesdk-perl-module-bigint nativesdk-perl-module-math-bigint" > > > > EXTRA_OECONF += "--with-sysroot=${SDKPATH}/sysroots/${TUNE_PKGARCH}${TARGET_VENDOR}-${TARGET_OS} \ > > > > --enable-poison-system-directories \ > > > > " > > > > > > > This is probably the right direction but shouldn't this be for the > > > gprofng package rather than ${PN}? > > > > > Hi Richard, > > > > In the SDK at $sdk/sysroots/x86_64-pokysdk-linux/usr/bin/x86_64- > > poky-linux, the script "x86_64-poky-linux-gp-display-html" is not > > pulled or packaged by the gprofng package. > > Instead, it is installed as part of the binutils-cross-canadian > > package. > > > > Adding the perl module dependencies to gprofng package will not > > resolve this issue , it would be effective only if "nativesdk- > > gprofng" is explicitly installed by the user. > > > > Fair enough. Should x86_64-poky-linux-gp-display-html not be part of > the gprofng package though? Perhaps we should change it to be packaged > there, then add the dependency to that? right, that would make it live with the right set of sub-package as well. > > Cheers, > > Richard > > > > -=-=-=-=-=-=-=-=-=-=-=- > Links: You receive all messages sent to this group. > View/Reply Online (#224204): https://lists.openembedded.org/g/openembedded-core/message/224204 > Mute This Topic: https://lists.openembedded.org/mt/115512852/1997914 > Group Owner: openembedded-core+owner@lists.openembedded.org > Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [raj.khem@gmail.com] > -=-=-=-=-=-=-=-=-=-=-=- > ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [OE-core] [PATCH 1/2] binutils-cross-canadian: Add missing perl mpodules to RDEPENDS 2025-10-01 16:56 ` Khem Raj @ 2026-04-01 12:40 ` Harish Sadineni 2026-04-01 20:39 ` Khem Raj 0 siblings, 1 reply; 9+ messages in thread From: Harish Sadineni @ 2026-04-01 12:40 UTC (permalink / raw) To: Khem Raj, richard.purdie; +Cc: openembedded-core, Sundeep.Kokkonda On 10/1/2025 10:26 PM, 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. > > On Wed, Oct 1, 2025 at 2:57 AM Richard Purdie via > lists.openembedded.org > <richard.purdie=linuxfoundation.org@lists.openembedded.org> wrote: >> On Wed, 2025-10-01 at 14:17 +0530, Harish Sadineni wrote: >>> On 9/30/2025 7:17 PM, Richard Purdie wrote: >>> On Tue, 2025-09-30 at 05:39 -0700, Sadineni, Harish via lists.openembedded.org wrote: >>>>> From: Harish Sadineni <Harish.Sadineni@windriver.com> >>>>> >>>>> In sdk while running "x86_64-poky-linux-gp-display-html --help" gives >>>>> following error: >>>>> $sdk/sysroots/x86_64-pokysdk-linux/usr/bin/x86_64-poky-linux-> >>>>> ./x86_64-poky-linux-gp-display-html --help >>>>> Can't locate bigint.pm in @INC (you may need to install the bigint module >>>>> >>>>> By adding the following perl modules to RDEPENDS fixes the above errors: >>>>> nativesdk-perl-module-bignum >>>>> nativesdk-perl-module-bigint >>>>> nativesdk-perl-module-math-bigint >>>>> >>>>> Signed-off-by: Harish Sadineni <Harish.Sadineni@windriver.com> >>>>> --- >>>>> meta/recipes-devtools/binutils/binutils-cross-canadian.inc | 1 + >>>>> 1 file changed, 1 insertion(+) >>>>> >>>>> diff --git a/meta/recipes-devtools/binutils/binutils-cross-canadian.inc b/meta/recipes-devtools/binutils/binutils-cross-canadian.inc >>>>> index 7d7ffe92ce..9dc73fbdf1 100644 >>>>> --- a/meta/recipes-devtools/binutils/binutils-cross-canadian.inc >>>>> +++ b/meta/recipes-devtools/binutils/binutils-cross-canadian.inc >>>>> @@ -5,6 +5,7 @@ PN = "binutils-cross-canadian-${TRANSLATED_TARGET_ARCH}" >>>>> BPN = "binutils" >>>>> >>>>> DEPENDS = "flex-native bison-native virtual/nativesdk-cross-cc virtual/nativesdk-libc nativesdk-zlib nativesdk-gettext nativesdk-flex" >>>>> +RDEPENDS:${PN} += "nativesdk-perl-module-bignum nativesdk-perl-module-bigint nativesdk-perl-module-math-bigint" >>>>> EXTRA_OECONF += "--with-sysroot=${SDKPATH}/sysroots/${TUNE_PKGARCH}${TARGET_VENDOR}-${TARGET_OS} \ >>>>> --enable-poison-system-directories \ >>>>> " >>>>> >>>> This is probably the right direction but shouldn't this be for the >>>> gprofng package rather than ${PN}? >>>> >>> Hi Richard, >>> >>> In the SDK at $sdk/sysroots/x86_64-pokysdk-linux/usr/bin/x86_64- >>> poky-linux, the script "x86_64-poky-linux-gp-display-html" is not >>> pulled or packaged by the gprofng package. >>> Instead, it is installed as part of the binutils-cross-canadian >>> package. >>> >>> Adding the perl module dependencies to gprofng package will not >>> resolve this issue , it would be effective only if "nativesdk- >>> gprofng" is explicitly installed by the user. >>> >> Fair enough. Should x86_64-poky-linux-gp-display-html not be part of >> the gprofng package though? Perhaps we should change it to be packaged >> there, then add the dependency to that? > right, that would make it live with the right set of sub-package as well. Hi Khem, Richard, We attempted to package gprofng separately from binutils-cross-canadian. We’ve verified that under the package split and its working correctly, and gprofng is being generated as an independent package. However, during SDK population, the gprofng package is still being included along with the main binutils-cross-canadian package, even though it hasn’t been explicitly added. I also checked whether there is any code that packages all the packages created under binutils-cross-canadian, but I couldn’t find anything relevant. Is this expected or do you have any suggestion. Thanks, Harish >> Cheers, >> >> Richard >> >> >> >> -=-=-=-=-=-=-=-=-=-=-=- >> Links: You receive all messages sent to this group. >> View/Reply Online (#224204): https://lists.openembedded.org/g/openembedded-core/message/224204 >> Mute This Topic: https://lists.openembedded.org/mt/115512852/1997914 >> Group Owner: openembedded-core+owner@lists.openembedded.org >> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [raj.khem@gmail.com] >> -=-=-=-=-=-=-=-=-=-=-=- >> ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [OE-core] [PATCH 1/2] binutils-cross-canadian: Add missing perl mpodules to RDEPENDS 2026-04-01 12:40 ` Harish Sadineni @ 2026-04-01 20:39 ` Khem Raj 0 siblings, 0 replies; 9+ messages in thread From: Khem Raj @ 2026-04-01 20:39 UTC (permalink / raw) To: Harish Sadineni; +Cc: richard.purdie, openembedded-core, Sundeep.Kokkonda [-- Attachment #1: Type: text/plain, Size: 4814 bytes --] On Wed, Apr 1, 2026 at 5:41 AM Harish Sadineni < Harish.Sadineni@windriver.com> wrote: > > On 10/1/2025 10:26 PM, 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. > > > > On Wed, Oct 1, 2025 at 2:57 AM Richard Purdie via > > lists.openembedded.org > > <richard.purdie=linuxfoundation.org@lists.openembedded.org> wrote: > >> On Wed, 2025-10-01 at 14:17 +0530, Harish Sadineni wrote: > >>> On 9/30/2025 7:17 PM, Richard Purdie wrote: > >>> On Tue, 2025-09-30 at 05:39 -0700, Sadineni, Harish via > lists.openembedded.org wrote: > >>>>> From: Harish Sadineni <Harish.Sadineni@windriver.com> > >>>>> > >>>>> In sdk while running "x86_64-poky-linux-gp-display-html --help" gives > >>>>> following error: > >>>>> $sdk/sysroots/x86_64-pokysdk-linux/usr/bin/x86_64-poky-linux-> > >>>>> ./x86_64-poky-linux-gp-display-html --help > >>>>> Can't locate bigint.pm in @INC (you may need to install the bigint > module > >>>>> > >>>>> By adding the following perl modules to RDEPENDS fixes the above > errors: > >>>>> nativesdk-perl-module-bignum > >>>>> nativesdk-perl-module-bigint > >>>>> nativesdk-perl-module-math-bigint > >>>>> > >>>>> Signed-off-by: Harish Sadineni <Harish.Sadineni@windriver.com> > >>>>> --- > >>>>> meta/recipes-devtools/binutils/binutils-cross-canadian.inc | 1 + > >>>>> 1 file changed, 1 insertion(+) > >>>>> > >>>>> diff --git > a/meta/recipes-devtools/binutils/binutils-cross-canadian.inc > b/meta/recipes-devtools/binutils/binutils-cross-canadian.inc > >>>>> index 7d7ffe92ce..9dc73fbdf1 100644 > >>>>> --- a/meta/recipes-devtools/binutils/binutils-cross-canadian.inc > >>>>> +++ b/meta/recipes-devtools/binutils/binutils-cross-canadian.inc > >>>>> @@ -5,6 +5,7 @@ PN = > "binutils-cross-canadian-${TRANSLATED_TARGET_ARCH}" > >>>>> BPN = "binutils" > >>>>> > >>>>> DEPENDS = "flex-native bison-native virtual/nativesdk-cross-cc > virtual/nativesdk-libc nativesdk-zlib nativesdk-gettext nativesdk-flex" > >>>>> +RDEPENDS:${PN} += "nativesdk-perl-module-bignum > nativesdk-perl-module-bigint nativesdk-perl-module-math-bigint" > >>>>> EXTRA_OECONF += > "--with-sysroot=${SDKPATH}/sysroots/${TUNE_PKGARCH}${TARGET_VENDOR}-${TARGET_OS} > \ > >>>>> --enable-poison-system-directories \ > >>>>> " > >>>>> > >>>> This is probably the right direction but shouldn't this be for the > >>>> gprofng package rather than ${PN}? > >>>> > >>> Hi Richard, > >>> > >>> In the SDK at $sdk/sysroots/x86_64-pokysdk-linux/usr/bin/x86_64- > >>> poky-linux, the script "x86_64-poky-linux-gp-display-html" is not > >>> pulled or packaged by the gprofng package. > >>> Instead, it is installed as part of the binutils-cross-canadian > >>> package. > >>> > >>> Adding the perl module dependencies to gprofng package will not > >>> resolve this issue , it would be effective only if "nativesdk- > >>> gprofng" is explicitly installed by the user. > >>> > >> Fair enough. Should x86_64-poky-linux-gp-display-html not be part of > >> the gprofng package though? Perhaps we should change it to be packaged > >> there, then add the dependency to that? > > right, that would make it live with the right set of sub-package as well. > > Hi Khem, Richard, > > We attempted to package gprofng separately from binutils-cross-canadian. > We’ve verified that under the package split and its working correctly, > and gprofng is being generated as an independent package. > > However, during SDK population, the gprofng package is still being > included along with the main binutils-cross-canadian package, > even though it hasn’t been explicitly added. > > I also checked whether there is any code that packages all the packages > created under binutils-cross-canadian, > but I couldn’t find anything relevant. Is this expected or do you have > any suggestion. > > I would suggest to look into shared libraries that gets into gprofng package and then see if there is a binary or .so in other other packages listing one of those .so in DT_NEEDED section of the ELF header. > Thanks, > Harish > > >> Cheers, > >> > >> Richard > >> > >> > >> > >> -=-=-=-=-=-=-=-=-=-=-=- > >> Links: You receive all messages sent to this group. > >> View/Reply Online (#224204): > https://lists.openembedded.org/g/openembedded-core/message/224204 > >> Mute This Topic: https://lists.openembedded.org/mt/115512852/1997914 > >> Group Owner: openembedded-core+owner@lists.openembedded.org > >> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [ > raj.khem@gmail.com] > >> -=-=-=-=-=-=-=-=-=-=-=- > >> > [-- Attachment #2: Type: text/html, Size: 7286 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [OE-core] [PATCH 1/2] binutils-cross-canadian: Add missing perl mpodules to RDEPENDS 2025-09-30 12:39 [PATCH 1/2] binutils-cross-canadian: Add missing perl mpodules to RDEPENDS Harish.Sadineni 2025-09-30 12:39 ` [PATCH 2/2] Revert "binutils: Add missing perl modules to RDEPENDS for nativsdk variant" Harish.Sadineni 2025-09-30 13:47 ` [OE-core] [PATCH 1/2] binutils-cross-canadian: Add missing perl mpodules to RDEPENDS Richard Purdie @ 2025-10-02 14:04 ` Mathieu Dubois-Briand 2 siblings, 0 replies; 9+ messages in thread From: Mathieu Dubois-Briand @ 2025-10-02 14:04 UTC (permalink / raw) To: Harish.Sadineni, openembedded-core; +Cc: Sundeep.Kokkonda On Tue Sep 30, 2025 at 2:39 PM CEST, Harish via lists.openembedded.org Sadineni wrote: > From: Harish Sadineni <Harish.Sadineni@windriver.com> > > In sdk while running "x86_64-poky-linux-gp-display-html --help" gives > following error: > $sdk/sysroots/x86_64-pokysdk-linux/usr/bin/x86_64-poky-linux-> > ./x86_64-poky-linux-gp-display-html --help > Can't locate bigint.pm in @INC (you may need to install the bigint module > > By adding the following perl modules to RDEPENDS fixes the above errors: > nativesdk-perl-module-bignum > nativesdk-perl-module-bigint > nativesdk-perl-module-math-bigint > > Signed-off-by: Harish Sadineni <Harish.Sadineni@windriver.com> > --- Hi Harish, Thanks for your patches. I'm seeing some strange things on the autobuilder with this series. I had a first build without errors, on another build I got: ERROR: nativesdk-binutils-2.45-r0 do_package_qa: QA Issue: nativesdk-gprofng rdepends on nativesdk-perl-module-bigint, but it isn't a build dependency, missing one of nativesdk-perl in DEPENDS or PACKAGECONFIG? [build-deps] ERROR: nativesdk-binutils-2.45-r0 do_package_qa: QA Issue: nativesdk-gprofng rdepends on nativesdk-perl-module-bignum, but it isn't a build dependency, missing one of nativesdk-perl in DEPENDS or PACKAGECONFIG? [build-deps] ERROR: nativesdk-binutils-2.45-r0 do_package_qa: QA Issue: nativesdk-gprofng rdepends on nativesdk-perl-module-math-bigint, but it isn't a build dependency, missing one of nativesdk-perl in DEPENDS or PACKAGECONFIG? [build-deps] https://autobuilder.yoctoproject.org/valkyrie/#/builders/19/builds/2495 Thanks, Mathieu -- Mathieu Dubois-Briand, Bootlin Embedded Linux and Kernel engineering https://bootlin.com ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2026-04-01 20:40 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-09-30 12:39 [PATCH 1/2] binutils-cross-canadian: Add missing perl mpodules to RDEPENDS Harish.Sadineni 2025-09-30 12:39 ` [PATCH 2/2] Revert "binutils: Add missing perl modules to RDEPENDS for nativsdk variant" Harish.Sadineni 2025-09-30 13:47 ` [OE-core] [PATCH 1/2] binutils-cross-canadian: Add missing perl mpodules to RDEPENDS Richard Purdie 2025-10-01 8:47 ` Harish Sadineni 2025-10-01 9:57 ` Richard Purdie 2025-10-01 16:56 ` Khem Raj 2026-04-01 12:40 ` Harish Sadineni 2026-04-01 20:39 ` Khem Raj 2025-10-02 14:04 ` Mathieu Dubois-Briand
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox