* [oe-core][PATCH] gcc-runtime.inc: additionally remove libgomp.info-1 and libgomp.info-2
@ 2024-05-20 17:57 Markus Volk
2024-05-22 9:06 ` Alexandre Belloni
0 siblings, 1 reply; 7+ messages in thread
From: Markus Volk @ 2024-05-20 17:57 UTC (permalink / raw)
To: openembedded-core
This avoids:
ERROR: gcc-runtime-14.1.0-r0 do_package: QA Issue: gcc-runtime: Files/directories were installed but not shipped in any package:
/usr/share/info
/usr/share/info/libgomp.info-1
/usr/share/info/libgomp.info-2
Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install.
gcc-runtime: 3 installed and not shipped files. [installed-vs-shipped]
Signed-off-by: Markus Volk <f_l_k@t-online.de>
---
meta/recipes-devtools/gcc/gcc-runtime.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/recipes-devtools/gcc/gcc-runtime.inc b/meta/recipes-devtools/gcc/gcc-runtime.inc
index dbc9141000..d1c47c5d5c 100644
--- a/meta/recipes-devtools/gcc/gcc-runtime.inc
+++ b/meta/recipes-devtools/gcc/gcc-runtime.inc
@@ -92,7 +92,7 @@ do_install () {
mv ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/include/* ${D}${libdir}/${TARGET_SYS}/${BINV}/include
rmdir --ignore-fail-on-non-empty -p ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/include
fi
- rm -rf ${D}${infodir}/libgomp.info ${D}${infodir}/dir
+ rm -rf ${D}${infodir}/libgomp.info ${D}${infodir}/libgomp.info-1 ${D}${infodir}/libgomp.info-2 ${D}${infodir}/dir
rm -rf ${D}${infodir}/libitm.info ${D}${infodir}/dir
rm -rf ${D}${infodir}/libquadmath.info ${D}${infodir}/dir
if [ -d ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/finclude ]; then
--
2.44.0
^ permalink raw reply related [flat|nested] 7+ messages in thread* Re: [oe-core][PATCH] gcc-runtime.inc: additionally remove libgomp.info-1 and libgomp.info-2
2024-05-20 17:57 [oe-core][PATCH] gcc-runtime.inc: additionally remove libgomp.info-1 and libgomp.info-2 Markus Volk
@ 2024-05-22 9:06 ` Alexandre Belloni
2024-05-22 9:07 ` Alexander Kanavin
2024-05-22 21:42 ` Markus Volk
0 siblings, 2 replies; 7+ messages in thread
From: Alexandre Belloni @ 2024-05-22 9:06 UTC (permalink / raw)
To: Markus Volk; +Cc: openembedded-core
Hello Markus,
this doesn't apply on master anymore, can you rebase?
On 20/05/2024 19:57:06+0200, Markus Volk wrote:
> This avoids:
> ERROR: gcc-runtime-14.1.0-r0 do_package: QA Issue: gcc-runtime: Files/directories were installed but not shipped in any package:
> /usr/share/info
> /usr/share/info/libgomp.info-1
> /usr/share/info/libgomp.info-2
> Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install.
> gcc-runtime: 3 installed and not shipped files. [installed-vs-shipped]
>
> Signed-off-by: Markus Volk <f_l_k@t-online.de>
> ---
> meta/recipes-devtools/gcc/gcc-runtime.inc | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta/recipes-devtools/gcc/gcc-runtime.inc b/meta/recipes-devtools/gcc/gcc-runtime.inc
> index dbc9141000..d1c47c5d5c 100644
> --- a/meta/recipes-devtools/gcc/gcc-runtime.inc
> +++ b/meta/recipes-devtools/gcc/gcc-runtime.inc
> @@ -92,7 +92,7 @@ do_install () {
> mv ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/include/* ${D}${libdir}/${TARGET_SYS}/${BINV}/include
> rmdir --ignore-fail-on-non-empty -p ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/include
> fi
> - rm -rf ${D}${infodir}/libgomp.info ${D}${infodir}/dir
> + rm -rf ${D}${infodir}/libgomp.info ${D}${infodir}/libgomp.info-1 ${D}${infodir}/libgomp.info-2 ${D}${infodir}/dir
> rm -rf ${D}${infodir}/libitm.info ${D}${infodir}/dir
> rm -rf ${D}${infodir}/libquadmath.info ${D}${infodir}/dir
> if [ -d ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/finclude ]; then
> --
> 2.44.0
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#199600): https://lists.openembedded.org/g/openembedded-core/message/199600
> Mute This Topic: https://lists.openembedded.org/mt/106208568/3617179
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [alexandre.belloni@bootlin.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
--
Alexandre Belloni, co-owner and COO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: [oe-core][PATCH] gcc-runtime.inc: additionally remove libgomp.info-1 and libgomp.info-2
2024-05-22 9:06 ` Alexandre Belloni
@ 2024-05-22 9:07 ` Alexander Kanavin
2024-05-22 20:05 ` Khem Raj
2024-05-22 21:50 ` Richard Purdie
2024-05-22 21:42 ` Markus Volk
1 sibling, 2 replies; 7+ messages in thread
From: Alexander Kanavin @ 2024-05-22 9:07 UTC (permalink / raw)
To: alexandre.belloni; +Cc: Markus Volk, openembedded-core
I'm also curious in what scenarios is this needed, if the AB doesn't
have the issue?
Alex
On Wed, 22 May 2024 at 11:06, Alexandre Belloni via
lists.openembedded.org
<alexandre.belloni=bootlin.com@lists.openembedded.org> wrote:
>
> Hello Markus,
>
> this doesn't apply on master anymore, can you rebase?
>
> On 20/05/2024 19:57:06+0200, Markus Volk wrote:
> > This avoids:
> > ERROR: gcc-runtime-14.1.0-r0 do_package: QA Issue: gcc-runtime: Files/directories were installed but not shipped in any package:
> > /usr/share/info
> > /usr/share/info/libgomp.info-1
> > /usr/share/info/libgomp.info-2
> > Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install.
> > gcc-runtime: 3 installed and not shipped files. [installed-vs-shipped]
> >
> > Signed-off-by: Markus Volk <f_l_k@t-online.de>
> > ---
> > meta/recipes-devtools/gcc/gcc-runtime.inc | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/meta/recipes-devtools/gcc/gcc-runtime.inc b/meta/recipes-devtools/gcc/gcc-runtime.inc
> > index dbc9141000..d1c47c5d5c 100644
> > --- a/meta/recipes-devtools/gcc/gcc-runtime.inc
> > +++ b/meta/recipes-devtools/gcc/gcc-runtime.inc
> > @@ -92,7 +92,7 @@ do_install () {
> > mv ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/include/* ${D}${libdir}/${TARGET_SYS}/${BINV}/include
> > rmdir --ignore-fail-on-non-empty -p ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/include
> > fi
> > - rm -rf ${D}${infodir}/libgomp.info ${D}${infodir}/dir
> > + rm -rf ${D}${infodir}/libgomp.info ${D}${infodir}/libgomp.info-1 ${D}${infodir}/libgomp.info-2 ${D}${infodir}/dir
> > rm -rf ${D}${infodir}/libitm.info ${D}${infodir}/dir
> > rm -rf ${D}${infodir}/libquadmath.info ${D}${infodir}/dir
> > if [ -d ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/finclude ]; then
> > --
> > 2.44.0
> >
>
> >
> >
> >
>
>
> --
> Alexandre Belloni, co-owner and COO, Bootlin
> Embedded Linux and Kernel engineering
> https://bootlin.com
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#199694): https://lists.openembedded.org/g/openembedded-core/message/199694
> Mute This Topic: https://lists.openembedded.org/mt/106208568/1686489
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [alex.kanavin@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: [oe-core][PATCH] gcc-runtime.inc: additionally remove libgomp.info-1 and libgomp.info-2
2024-05-22 9:07 ` Alexander Kanavin
@ 2024-05-22 20:05 ` Khem Raj
2024-05-22 21:50 ` Richard Purdie
1 sibling, 0 replies; 7+ messages in thread
From: Khem Raj @ 2024-05-22 20:05 UTC (permalink / raw)
To: alex.kanavin; +Cc: alexandre.belloni, Markus Volk, openembedded-core
On Wed, May 22, 2024 at 2:07 AM Alexander Kanavin via
lists.openembedded.org <alex.kanavin=gmail.com@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, 22 May 2024 at 11:06, Alexandre Belloni via
> lists.openembedded.org
> <alexandre.belloni=bootlin.com@lists.openembedded.org> wrote:
> >
> > Hello Markus,
> >
> > this doesn't apply on master anymore, can you rebase?
> >
> > On 20/05/2024 19:57:06+0200, Markus Volk wrote:
> > > This avoids:
> > > ERROR: gcc-runtime-14.1.0-r0 do_package: QA Issue: gcc-runtime: Files/directories were installed but not shipped in any package:
> > > /usr/share/info
> > > /usr/share/info/libgomp.info-1
> > > /usr/share/info/libgomp.info-2
> > > Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install.
> > > gcc-runtime: 3 installed and not shipped files. [installed-vs-shipped]
> > >
> > > Signed-off-by: Markus Volk <f_l_k@t-online.de>
> > > ---
> > > meta/recipes-devtools/gcc/gcc-runtime.inc | 2 +-
> > > 1 file changed, 1 insertion(+), 1 deletion(-)
> > >
> > > diff --git a/meta/recipes-devtools/gcc/gcc-runtime.inc b/meta/recipes-devtools/gcc/gcc-runtime.inc
> > > index dbc9141000..d1c47c5d5c 100644
> > > --- a/meta/recipes-devtools/gcc/gcc-runtime.inc
> > > +++ b/meta/recipes-devtools/gcc/gcc-runtime.inc
> > > @@ -92,7 +92,7 @@ do_install () {
> > > mv ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/include/* ${D}${libdir}/${TARGET_SYS}/${BINV}/include
> > > rmdir --ignore-fail-on-non-empty -p ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/include
> > > fi
> > > - rm -rf ${D}${infodir}/libgomp.info ${D}${infodir}/dir
> > > + rm -rf ${D}${infodir}/libgomp.info ${D}${infodir}/libgomp.info-1 ${D}${infodir}/libgomp.info-2 ${D}${infodir}/dir
> > > rm -rf ${D}${infodir}/libitm.info ${D}${infodir}/dir
> > > rm -rf ${D}${infodir}/libquadmath.info ${D}${infodir}/dir
> > > if [ -d ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/finclude ]; then
> > > --
> > > 2.44.0
> > >
> >
> > >
> > >
> > >
> >
> >
> > --
> > Alexandre Belloni, co-owner and COO, Bootlin
> > Embedded Linux and Kernel engineering
> > https://bootlin.com
> >
> >
> >
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#199695): https://lists.openembedded.org/g/openembedded-core/message/199695
> Mute This Topic: https://lists.openembedded.org/mt/106208568/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] 7+ messages in thread* Re: [oe-core][PATCH] gcc-runtime.inc: additionally remove libgomp.info-1 and libgomp.info-2
2024-05-22 9:07 ` Alexander Kanavin
2024-05-22 20:05 ` Khem Raj
@ 2024-05-22 21:50 ` Richard Purdie
1 sibling, 0 replies; 7+ messages in thread
From: Richard Purdie @ 2024-05-22 21:50 UTC (permalink / raw)
To: alex.kanavin, alexandre.belloni; +Cc: Markus Volk, openembedded-core
On Wed, 2024-05-22 at 11:07 +0200, 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?
The AB did (the mandb selftest) and I had a patch which overlapped with
the patch from Markus.
Cheers,
Richard
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [oe-core][PATCH] gcc-runtime.inc: additionally remove libgomp.info-1 and libgomp.info-2
2024-05-22 9:06 ` Alexandre Belloni
2024-05-22 9:07 ` Alexander Kanavin
@ 2024-05-22 21:42 ` Markus Volk
2024-05-22 21:49 ` Alexandre Belloni
1 sibling, 1 reply; 7+ messages in thread
From: Markus Volk @ 2024-05-22 21:42 UTC (permalink / raw)
To: Alexandre Belloni; +Cc: Markus Volk, openembedded-core
[-- Attachment #1: Type: text/plain, Size: 327 bytes --]
On Wed, May 22 2024 at 11:06:22 AM +02:00:00, Alexandre Belloni
<alexandre.belloni@bootlin.com> wrote:
> this doesn't apply on master anymore, can you rebase?
Hi Alexandre,
probably this doesn't apply because Richard Purdie added a fix for this
almost at the same time as I sent this patch.
So I guess this can be ignored
[-- Attachment #2: Type: text/html, Size: 527 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [oe-core][PATCH] gcc-runtime.inc: additionally remove libgomp.info-1 and libgomp.info-2
2024-05-22 21:42 ` Markus Volk
@ 2024-05-22 21:49 ` Alexandre Belloni
0 siblings, 0 replies; 7+ messages in thread
From: Alexandre Belloni @ 2024-05-22 21:49 UTC (permalink / raw)
To: Markus Volk; +Cc: openembedded-core
On 22/05/2024 23:42:07+0200, Markus Volk wrote:
> On Wed, May 22 2024 at 11:06:22 AM +02:00:00, Alexandre Belloni
> <alexandre.belloni@bootlin.com> wrote:
> > this doesn't apply on master anymore, can you rebase?
>
> Hi Alexandre,
>
> probably this doesn't apply because Richard Purdie added a fix for this
> almost at the same time as I sent this patch.
> So I guess this can be ignored
Ack, I wasn't sure this was fixing the same issue, thanks!
--
Alexandre Belloni, co-owner and COO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-05-22 21:51 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-20 17:57 [oe-core][PATCH] gcc-runtime.inc: additionally remove libgomp.info-1 and libgomp.info-2 Markus Volk
2024-05-22 9:06 ` Alexandre Belloni
2024-05-22 9:07 ` Alexander Kanavin
2024-05-22 20:05 ` Khem Raj
2024-05-22 21:50 ` Richard Purdie
2024-05-22 21:42 ` Markus Volk
2024-05-22 21:49 ` Alexandre Belloni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox