* Including vendor's pre-built binary in image
@ 2020-04-08 1:52 Ankur Tyagi
2020-04-08 6:42 ` [OE-core] " Mikko Rapeli
2020-04-08 7:12 ` Denys Dmytriyenko
0 siblings, 2 replies; 5+ messages in thread
From: Ankur Tyagi @ 2020-04-08 1:52 UTC (permalink / raw)
To: openembedded-core
[-- Attachment #1: Type: text/plain, Size: 966 bytes --]
Hi,
I am sure this is not being discussed for first time and I tried
all suggested solution in previous emails but none worked hence I am asking
again.
Trying to include a pre-built binary from vendor in my image but getting
following QA error:
ERROR: my-recipe-1.0-r0 do_package_qa: QA Issue: /etc/vendor/tool contained
in package my-recipe requires libstdc++.so.6(CXXABI_1.3), but no providers
found in RDEPENDS_my-recipe ? [file-rdeps]
ERROR: my-recipe -1.0-r0 do_package_qa: QA Issue: /etc/vendor/tool
contained in package my-recipe requires libstdc++.so.6(GLIBCXX_3.4), but no
providers found in RDEPENDS_my-recipe ? [file-rdeps]
ERROR: my-recipe -1.0-r0 do_package_qa: QA run found fatal errors. Please
consider fixing them.
ERROR: my-recipe -1.0-r0 do_package_qa: Function failed: do_package_qa
I have tried following in my-recipe_1.0.bb but error still persists
RDEPENDS_${PN} += "libstdc++6"
How can I fix this?
thanks
Ankur
[-- Attachment #2: Type: text/html, Size: 2165 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [OE-core] Including vendor's pre-built binary in image
2020-04-08 1:52 Including vendor's pre-built binary in image Ankur Tyagi
@ 2020-04-08 6:42 ` Mikko Rapeli
2020-04-08 10:38 ` Ankur Tyagi
2020-04-08 7:12 ` Denys Dmytriyenko
1 sibling, 1 reply; 5+ messages in thread
From: Mikko Rapeli @ 2020-04-08 6:42 UTC (permalink / raw)
To: ankur.tyagi85; +Cc: openembedded-core
Hi,
On Wed, Apr 08, 2020 at 01:52:47PM +1200, Ankur Tyagi wrote:
> Hi,
>
> I am sure this is not being discussed for first time and I tried
> all suggested solution in previous emails but none worked hence I am asking
> again.
>
> Trying to include a pre-built binary from vendor in my image but getting
> following QA error:
>
> ERROR: my-recipe-1.0-r0 do_package_qa: QA Issue: /etc/vendor/tool contained
> in package my-recipe requires libstdc++.so.6(CXXABI_1.3), but no providers
> found in RDEPENDS_my-recipe ? [file-rdeps]
> ERROR: my-recipe -1.0-r0 do_package_qa: QA Issue: /etc/vendor/tool
> contained in package my-recipe requires libstdc++.so.6(GLIBCXX_3.4), but no
> providers found in RDEPENDS_my-recipe ? [file-rdeps]
> ERROR: my-recipe -1.0-r0 do_package_qa: QA run found fatal errors. Please
> consider fixing them.
> ERROR: my-recipe -1.0-r0 do_package_qa: Function failed: do_package_qa
>
> I have tried following in my-recipe_1.0.bb but error still persists
> RDEPENDS_${PN} += "libstdc++6"
This shared library comes from gcc-runtime recipe and libstdc++ binary package
(before name manglings). buildhistory helps with cases like this.
I would write recipes for all binaries and make sure all QA checks are passing
with them. Best way is to get vendors to compile with your SDK.
Cheers,
-Mikko
>
> How can I fix this?
>
> thanks
> Ankur
>
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [OE-core] Including vendor's pre-built binary in image
2020-04-08 6:42 ` [OE-core] " Mikko Rapeli
@ 2020-04-08 10:38 ` Ankur Tyagi
0 siblings, 0 replies; 5+ messages in thread
From: Ankur Tyagi @ 2020-04-08 10:38 UTC (permalink / raw)
To: Mikko.Rapeli; +Cc: openembedded-core
[-- Attachment #1: Type: text/plain, Size: 1676 bytes --]
Hi,
Ideally yes but vendor won't be able to do so.
I am looking for a fix at my end.
thanks
Ankur
On Wed, Apr 8, 2020 at 6:42 PM <Mikko.Rapeli@bmw.de> wrote:
> Hi,
>
> On Wed, Apr 08, 2020 at 01:52:47PM +1200, Ankur Tyagi wrote:
> > Hi,
> >
> > I am sure this is not being discussed for first time and I tried
> > all suggested solution in previous emails but none worked hence I am
> asking
> > again.
> >
> > Trying to include a pre-built binary from vendor in my image but getting
> > following QA error:
> >
> > ERROR: my-recipe-1.0-r0 do_package_qa: QA Issue: /etc/vendor/tool
> contained
> > in package my-recipe requires libstdc++.so.6(CXXABI_1.3), but no
> providers
> > found in RDEPENDS_my-recipe ? [file-rdeps]
> > ERROR: my-recipe -1.0-r0 do_package_qa: QA Issue: /etc/vendor/tool
> > contained in package my-recipe requires libstdc++.so.6(GLIBCXX_3.4), but
> no
> > providers found in RDEPENDS_my-recipe ? [file-rdeps]
> > ERROR: my-recipe -1.0-r0 do_package_qa: QA run found fatal errors. Please
> > consider fixing them.
> > ERROR: my-recipe -1.0-r0 do_package_qa: Function failed: do_package_qa
> >
> > I have tried following in my-recipe_1.0.bb but error still persists
> > RDEPENDS_${PN} += "libstdc++6"
>
> This shared library comes from gcc-runtime recipe and libstdc++ binary
> package
> (before name manglings). buildhistory helps with cases like this.
>
> I would write recipes for all binaries and make sure all QA checks are
> passing
> with them. Best way is to get vendors to compile with your SDK.
>
> Cheers,
>
> -Mikko
>
> >
> > How can I fix this?
> >
> > thanks
> > Ankur
>
> >
>
[-- Attachment #2: Type: text/html, Size: 2714 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [OE-core] Including vendor's pre-built binary in image
2020-04-08 1:52 Including vendor's pre-built binary in image Ankur Tyagi
2020-04-08 6:42 ` [OE-core] " Mikko Rapeli
@ 2020-04-08 7:12 ` Denys Dmytriyenko
2020-04-08 10:40 ` Ankur Tyagi
1 sibling, 1 reply; 5+ messages in thread
From: Denys Dmytriyenko @ 2020-04-08 7:12 UTC (permalink / raw)
To: Ankur Tyagi; +Cc: openembedded-core
On Wed, Apr 08, 2020 at 01:52:47PM +1200, Ankur Tyagi wrote:
> Hi,
>
> I am sure this is not being discussed for first time and I tried
> all suggested solution in previous emails but none worked hence I am asking
> again.
>
> Trying to include a pre-built binary from vendor in my image but getting
> following QA error:
>
> ERROR: my-recipe-1.0-r0 do_package_qa: QA Issue: /etc/vendor/tool contained
> in package my-recipe requires libstdc++.so.6(CXXABI_1.3), but no providers
> found in RDEPENDS_my-recipe ? [file-rdeps]
> ERROR: my-recipe -1.0-r0 do_package_qa: QA Issue: /etc/vendor/tool
> contained in package my-recipe requires libstdc++.so.6(GLIBCXX_3.4), but no
> providers found in RDEPENDS_my-recipe ? [file-rdeps]
> ERROR: my-recipe -1.0-r0 do_package_qa: QA run found fatal errors. Please
> consider fixing them.
> ERROR: my-recipe -1.0-r0 do_package_qa: Function failed: do_package_qa
>
> I have tried following in my-recipe_1.0.bb but error still persists
> RDEPENDS_${PN} += "libstdc++6"
>
> How can I fix this?
https://lists.yoctoproject.org/g/poky/message/11900
> thanks
> Ankur
>
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [OE-core] Including vendor's pre-built binary in image
2020-04-08 7:12 ` Denys Dmytriyenko
@ 2020-04-08 10:40 ` Ankur Tyagi
0 siblings, 0 replies; 5+ messages in thread
From: Ankur Tyagi @ 2020-04-08 10:40 UTC (permalink / raw)
To: Denys Dmytriyenko; +Cc: openembedded-core
[-- Attachment #1: Type: text/plain, Size: 1363 bytes --]
Thank you Denys, INSANE_SKIP "file-rdeps" solved the issue
cheers
On Wed, Apr 8, 2020 at 7:12 PM Denys Dmytriyenko <denis@denix.org> wrote:
> On Wed, Apr 08, 2020 at 01:52:47PM +1200, Ankur Tyagi wrote:
> > Hi,
> >
> > I am sure this is not being discussed for first time and I tried
> > all suggested solution in previous emails but none worked hence I am
> asking
> > again.
> >
> > Trying to include a pre-built binary from vendor in my image but getting
> > following QA error:
> >
> > ERROR: my-recipe-1.0-r0 do_package_qa: QA Issue: /etc/vendor/tool
> contained
> > in package my-recipe requires libstdc++.so.6(CXXABI_1.3), but no
> providers
> > found in RDEPENDS_my-recipe ? [file-rdeps]
> > ERROR: my-recipe -1.0-r0 do_package_qa: QA Issue: /etc/vendor/tool
> > contained in package my-recipe requires libstdc++.so.6(GLIBCXX_3.4), but
> no
> > providers found in RDEPENDS_my-recipe ? [file-rdeps]
> > ERROR: my-recipe -1.0-r0 do_package_qa: QA run found fatal errors. Please
> > consider fixing them.
> > ERROR: my-recipe -1.0-r0 do_package_qa: Function failed: do_package_qa
> >
> > I have tried following in my-recipe_1.0.bb but error still persists
> > RDEPENDS_${PN} += "libstdc++6"
> >
> > How can I fix this?
>
> https://lists.yoctoproject.org/g/poky/message/11900
>
>
> > thanks
> > Ankur
>
> >
>
>
[-- Attachment #2: Type: text/html, Size: 2200 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2020-04-08 10:40 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-08 1:52 Including vendor's pre-built binary in image Ankur Tyagi
2020-04-08 6:42 ` [OE-core] " Mikko Rapeli
2020-04-08 10:38 ` Ankur Tyagi
2020-04-08 7:12 ` Denys Dmytriyenko
2020-04-08 10:40 ` Ankur Tyagi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox