All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v2,1/1] package/file: fix build with gcc 4.8
@ 2022-01-04 20:54 Fabrice Fontaine
  2022-01-07 18:08 ` [Buildroot] [PATCH v2, 1/1] " Thomas Petazzoni
                   ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Fabrice Fontaine @ 2022-01-04 20:54 UTC (permalink / raw)
  To: buildroot; +Cc: Fabrice Fontaine

Fix the following build failure raised since bump to version 5.41 in
commit d38b72bcd75392a88b5100839ac410859d0a6a79:

readelf.c: In function 'do_auxv_note':
readelf.c:1046:2: error: 'for' loop initial declarations are only allowed in C99 mode
  for (size_t off = 0; off + elsize <= descsz; off += elsize) {
  ^

Fixes:
 - http://autobuild.buildroot.org/results/31cbc313fceb84c0cbb1969fca5ac44244871dbc

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
Changes v1 -> v2 (after review of Yann E. Morin):
 - Set ac_cv_prog_c99 for host as already done for target instead of
   adding an upstreamable patch

 package/file/file.mk | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/file/file.mk b/package/file/file.mk
index 12647af8bb..62cec4b2c9 100644
--- a/package/file/file.mk
+++ b/package/file/file.mk
@@ -9,6 +9,7 @@ FILE_SITE = ftp://ftp.astron.com/pub/file
 FILE_DEPENDENCIES = host-file
 HOST_FILE_DEPENDENCIES = host-zlib
 FILE_CONF_ENV = ac_cv_prog_cc_c99='-std=gnu99'
+HOST_FILE_CONF_ENV = ac_cv_prog_cc_c99='-std=gnu99'
 FILE_INSTALL_STAGING = YES
 FILE_LICENSE = BSD-2-Clause, BSD-4-Clause (one file), BSD-3-Clause (one file)
 FILE_LICENSE_FILES = COPYING src/mygetopt.h src/vasprintf.c
-- 
2.34.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [Buildroot] [PATCH v2, 1/1] package/file: fix build with gcc 4.8
  2022-01-04 20:54 [Buildroot] [PATCH v2,1/1] package/file: fix build with gcc 4.8 Fabrice Fontaine
@ 2022-01-07 18:08 ` Thomas Petazzoni
  2022-01-08 10:51 ` Thomas Petazzoni
  2022-01-08 22:04 ` Yann E. MORIN
  2 siblings, 0 replies; 10+ messages in thread
From: Thomas Petazzoni @ 2022-01-07 18:08 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: buildroot

On Tue,  4 Jan 2022 21:54:55 +0100
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> Fix the following build failure raised since bump to version 5.41 in
> commit d38b72bcd75392a88b5100839ac410859d0a6a79:
> 
> readelf.c: In function 'do_auxv_note':
> readelf.c:1046:2: error: 'for' loop initial declarations are only allowed in C99 mode
>   for (size_t off = 0; off + elsize <= descsz; off += elsize) {
>   ^
> 
> Fixes:
>  - http://autobuild.buildroot.org/results/31cbc313fceb84c0cbb1969fca5ac44244871dbc
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
> Changes v1 -> v2 (after review of Yann E. Morin):
>  - Set ac_cv_prog_c99 for host as already done for target instead of
>    adding an upstreamable patch

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Buildroot] [PATCH v2, 1/1] package/file: fix build with gcc 4.8
  2022-01-04 20:54 [Buildroot] [PATCH v2,1/1] package/file: fix build with gcc 4.8 Fabrice Fontaine
  2022-01-07 18:08 ` [Buildroot] [PATCH v2, 1/1] " Thomas Petazzoni
@ 2022-01-08 10:51 ` Thomas Petazzoni
  2022-01-08 16:13   ` Fabrice Fontaine
  2022-01-08 22:04 ` Yann E. MORIN
  2 siblings, 1 reply; 10+ messages in thread
From: Thomas Petazzoni @ 2022-01-08 10:51 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Yann E. MORIN, buildroot

On Tue,  4 Jan 2022 21:54:55 +0100
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> Fix the following build failure raised since bump to version 5.41 in
> commit d38b72bcd75392a88b5100839ac410859d0a6a79:
> 
> readelf.c: In function 'do_auxv_note':
> readelf.c:1046:2: error: 'for' loop initial declarations are only allowed in C99 mode
>   for (size_t off = 0; off + elsize <= descsz; off += elsize) {
>   ^
> 
> Fixes:
>  - http://autobuild.buildroot.org/results/31cbc313fceb84c0cbb1969fca5ac44244871dbc
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

I am afraid it seems like this didn't fix the problem, see:

  http://autobuild.buildroot.net/results/957/9573e8b01d8f21cd89a67475daabdeef533d31d7/build-end.log

ac_cv_prog_cc_c99='-std=gnu99' is properly passed to the configure
script, but it still fails.

Thomas
-- 
Thomas Petazzoni, co-owner and CEO, Bootlin
Embedded Linux and Kernel engineering and training
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Buildroot] [PATCH v2, 1/1] package/file: fix build with gcc 4.8
  2022-01-08 10:51 ` Thomas Petazzoni
@ 2022-01-08 16:13   ` Fabrice Fontaine
  2022-01-08 17:39     ` Peter Seiderer
  0 siblings, 1 reply; 10+ messages in thread
From: Fabrice Fontaine @ 2022-01-08 16:13 UTC (permalink / raw)
  To: Thomas Petazzoni; +Cc: Yann E. MORIN, Buildroot Mailing List

Hi,

Le sam. 8 janv. 2022 à 11:51, Thomas Petazzoni
<thomas.petazzoni@bootlin.com> a écrit :
>
> On Tue,  4 Jan 2022 21:54:55 +0100
> Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:
>
> > Fix the following build failure raised since bump to version 5.41 in
> > commit d38b72bcd75392a88b5100839ac410859d0a6a79:
> >
> > readelf.c: In function 'do_auxv_note':
> > readelf.c:1046:2: error: 'for' loop initial declarations are only allowed in C99 mode
> >   for (size_t off = 0; off + elsize <= descsz; off += elsize) {
> >   ^
> >
> > Fixes:
> >  - http://autobuild.buildroot.org/results/31cbc313fceb84c0cbb1969fca5ac44244871dbc
> >
> > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
>
> I am afraid it seems like this didn't fix the problem, see:
>
>   http://autobuild.buildroot.net/results/957/9573e8b01d8f21cd89a67475daabdeef533d31d7/build-end.log
>
> ac_cv_prog_cc_c99='-std=gnu99' is properly passed to the configure
> script, but it still fails.
Indeed, I suggest to revert this commit and apply the version 1 of
this patch instead of trying to understand what is "broken" in the
configure script.
>
> Thomas
> --
> Thomas Petazzoni, co-owner and CEO, Bootlin
> Embedded Linux and Kernel engineering and training
> https://bootlin.com
Best Regards,

Fabrice
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Buildroot] [PATCH v2, 1/1] package/file: fix build with gcc 4.8
  2022-01-08 16:13   ` Fabrice Fontaine
@ 2022-01-08 17:39     ` Peter Seiderer
  2022-01-08 18:38       ` Thomas Petazzoni
  0 siblings, 1 reply; 10+ messages in thread
From: Peter Seiderer @ 2022-01-08 17:39 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Yann E. MORIN, Thomas Petazzoni, Buildroot Mailing List

Hello Fabrice, *,

On Sat, 8 Jan 2022 17:13:47 +0100, Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> Hi,
> 
> Le sam. 8 janv. 2022 à 11:51, Thomas Petazzoni
> <thomas.petazzoni@bootlin.com> a écrit :
> >
> > On Tue,  4 Jan 2022 21:54:55 +0100
> > Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:
> >  
> > > Fix the following build failure raised since bump to version 5.41 in
> > > commit d38b72bcd75392a88b5100839ac410859d0a6a79:
> > >
> > > readelf.c: In function 'do_auxv_note':
> > > readelf.c:1046:2: error: 'for' loop initial declarations are only allowed in C99 mode
> > >   for (size_t off = 0; off + elsize <= descsz; off += elsize) {
> > >   ^
> > >
> > > Fixes:
> > >  - http://autobuild.buildroot.org/results/31cbc313fceb84c0cbb1969fca5ac44244871dbc
> > >
> > > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>  
> >
> > I am afraid it seems like this didn't fix the problem, see:
> >
> >   http://autobuild.buildroot.net/results/957/9573e8b01d8f21cd89a67475daabdeef533d31d7/build-end.log
> >
> > ac_cv_prog_cc_c99='-std=gnu99' is properly passed to the configure
> > script, but it still fails.  
> Indeed, I suggest to revert this commit and apply the version 1 of
> this patch instead of trying to understand what is "broken" in the
> configure script.

The difference seems to be:

	$ diff -ru file-5.38/configure.ac file-5.41/configure.ac
[...]
@@ -88,7 +88,7 @@
 AC_SUBST(WARNINGS)
 
 dnl Checks for programs.
-AC_PROG_CC_STDC
+AC_PROG_CC
 AC_USE_SYSTEM_EXTENSIONS
 AM_PROG_CC_C_O
 AC_C_BIGENDIAN
[...]

According to [1] AC_PROG_CC checks/enables c89 and AC_PROG_CC_STDC checks/enabls C99 (or
use AC_PROG_CC_C99 to be more explicit)..., note that with AC_PROG_CC the ac_cv_prog_cc_c99
feature is gone (still used for target/host in package/file/file.mk)...

Regards,
Peter	

[1] https://www.gnu.org/software/autoconf/manual/autoconf-2.69/html_node/C-Compiler.html

> >
> > Thomas
> > --
> > Thomas Petazzoni, co-owner and CEO, Bootlin
> > Embedded Linux and Kernel engineering and training
> > https://bootlin.com  
> Best Regards,
> 
> Fabrice
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Buildroot] [PATCH v2, 1/1] package/file: fix build with gcc 4.8
  2022-01-08 17:39     ` Peter Seiderer
@ 2022-01-08 18:38       ` Thomas Petazzoni
  2022-01-08 18:46         ` Fabrice Fontaine
  2022-01-08 18:50         ` Arnout Vandecappelle
  0 siblings, 2 replies; 10+ messages in thread
From: Thomas Petazzoni @ 2022-01-08 18:38 UTC (permalink / raw)
  To: Peter Seiderer; +Cc: Buildroot Mailing List, Fabrice Fontaine, Yann E. MORIN

On Sat, 8 Jan 2022 18:39:19 +0100
Peter Seiderer <ps.report@gmx.net> wrote:

> The difference seems to be:
> 
> 	$ diff -ru file-5.38/configure.ac file-5.41/configure.ac
> [...]
> @@ -88,7 +88,7 @@
>  AC_SUBST(WARNINGS)
>  
>  dnl Checks for programs.
> -AC_PROG_CC_STDC
> +AC_PROG_CC
>  AC_USE_SYSTEM_EXTENSIONS
>  AM_PROG_CC_C_O
>  AC_C_BIGENDIAN
> [...]
> 
> According to [1] AC_PROG_CC checks/enables c89 and AC_PROG_CC_STDC checks/enabls C99 (or
> use AC_PROG_CC_C99 to be more explicit)..., note that with AC_PROG_CC the ac_cv_prog_cc_c99
> feature is gone (still used for target/host in package/file/file.mk)...

But why the solution we use for the target package doesn't work for the
host package?

Or perhaps we're no longer testing the target package with gcc 4.8 ?

Thomas
-- 
Thomas Petazzoni, co-owner and CEO, Bootlin
Embedded Linux and Kernel engineering and training
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Buildroot] [PATCH v2, 1/1] package/file: fix build with gcc 4.8
  2022-01-08 18:38       ` Thomas Petazzoni
@ 2022-01-08 18:46         ` Fabrice Fontaine
  2022-01-08 18:50         ` Arnout Vandecappelle
  1 sibling, 0 replies; 10+ messages in thread
From: Fabrice Fontaine @ 2022-01-08 18:46 UTC (permalink / raw)
  To: Thomas Petazzoni; +Cc: Peter Seiderer, Yann E. MORIN, Buildroot Mailing List

Le sam. 8 janv. 2022 à 19:38, Thomas Petazzoni
<thomas.petazzoni@bootlin.com> a écrit :
>
> On Sat, 8 Jan 2022 18:39:19 +0100
> Peter Seiderer <ps.report@gmx.net> wrote:
>
> > The difference seems to be:
> >
> >       $ diff -ru file-5.38/configure.ac file-5.41/configure.ac
> > [...]
> > @@ -88,7 +88,7 @@
> >  AC_SUBST(WARNINGS)
> >
> >  dnl Checks for programs.
> > -AC_PROG_CC_STDC
> > +AC_PROG_CC
> >  AC_USE_SYSTEM_EXTENSIONS
> >  AM_PROG_CC_C_O
> >  AC_C_BIGENDIAN
> > [...]
> >
> > According to [1] AC_PROG_CC checks/enables c89 and AC_PROG_CC_STDC checks/enabls C99 (or
> > use AC_PROG_CC_C99 to be more explicit)..., note that with AC_PROG_CC the ac_cv_prog_cc_c99
> > feature is gone (still used for target/host in package/file/file.mk)...
>
> But why the solution we use for the target package doesn't work for the
> host package?
>
> Or perhaps we're no longer testing the target package with gcc 4.8 ?
host-file is a dependency of file that's why we have only build
failure with host-file.
Build failures are raised only since the bump.
>
> Thomas
> --
> Thomas Petazzoni, co-owner and CEO, Bootlin
> Embedded Linux and Kernel engineering and training
> https://bootlin.com
Best Regards,

Fabrice
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Buildroot] [PATCH v2, 1/1] package/file: fix build with gcc 4.8
  2022-01-08 18:38       ` Thomas Petazzoni
  2022-01-08 18:46         ` Fabrice Fontaine
@ 2022-01-08 18:50         ` Arnout Vandecappelle
  2022-01-08 20:41           ` Fabrice Fontaine
  1 sibling, 1 reply; 10+ messages in thread
From: Arnout Vandecappelle @ 2022-01-08 18:50 UTC (permalink / raw)
  To: Thomas Petazzoni, Peter Seiderer
  Cc: Fabrice Fontaine, Yann E. MORIN, Buildroot Mailing List



On 08/01/2022 19:38, Thomas Petazzoni wrote:
> On Sat, 8 Jan 2022 18:39:19 +0100
> Peter Seiderer <ps.report@gmx.net> wrote:
> 
>> The difference seems to be:
>>
>> 	$ diff -ru file-5.38/configure.ac file-5.41/configure.ac
>> [...]
>> @@ -88,7 +88,7 @@
>>   AC_SUBST(WARNINGS)
>>   
>>   dnl Checks for programs.
>> -AC_PROG_CC_STDC
>> +AC_PROG_CC
>>   AC_USE_SYSTEM_EXTENSIONS
>>   AM_PROG_CC_C_O
>>   AC_C_BIGENDIAN
>> [...]
>>
>> According to [1] AC_PROG_CC checks/enables c89 and AC_PROG_CC_STDC checks/enabls C99 (or
>> use AC_PROG_CC_C99 to be more explicit)..., note that with AC_PROG_CC the ac_cv_prog_cc_c99
>> feature is gone (still used for target/host in package/file/file.mk)...
> 
> But why the solution we use for the target package doesn't work for the
> host package?
> 
> Or perhaps we're no longer testing the target package with gcc 4.8 ?

sourcery-arm*.config uses the CodeSourcery toolchain which has gcc 4.8, so yes 
we should be testing it with gcc 4.8...

  Regards,
  Arnout
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Buildroot] [PATCH v2, 1/1] package/file: fix build with gcc 4.8
  2022-01-08 18:50         ` Arnout Vandecappelle
@ 2022-01-08 20:41           ` Fabrice Fontaine
  0 siblings, 0 replies; 10+ messages in thread
From: Fabrice Fontaine @ 2022-01-08 20:41 UTC (permalink / raw)
  To: Arnout Vandecappelle
  Cc: Peter Seiderer, Yann E. MORIN, Thomas Petazzoni, Buildroot Mailing List

Le sam. 8 janv. 2022 à 19:50, Arnout Vandecappelle <arnout@mind.be> a écrit :
>
>
>
> On 08/01/2022 19:38, Thomas Petazzoni wrote:
> > On Sat, 8 Jan 2022 18:39:19 +0100
> > Peter Seiderer <ps.report@gmx.net> wrote:
> >
> >> The difference seems to be:
> >>
> >>      $ diff -ru file-5.38/configure.ac file-5.41/configure.ac
> >> [...]
> >> @@ -88,7 +88,7 @@
> >>   AC_SUBST(WARNINGS)
> >>
> >>   dnl Checks for programs.
> >> -AC_PROG_CC_STDC
> >> +AC_PROG_CC
> >>   AC_USE_SYSTEM_EXTENSIONS
> >>   AM_PROG_CC_C_O
> >>   AC_C_BIGENDIAN
> >> [...]
> >>
> >> According to [1] AC_PROG_CC checks/enables c89 and AC_PROG_CC_STDC checks/enabls C99 (or
> >> use AC_PROG_CC_C99 to be more explicit)..., note that with AC_PROG_CC the ac_cv_prog_cc_c99
> >> feature is gone (still used for target/host in package/file/file.mk)...
> >
> > But why the solution we use for the target package doesn't work for the
> > host package?
> >
> > Or perhaps we're no longer testing the target package with gcc 4.8 ?
>
> sourcery-arm*.config uses the CodeSourcery toolchain which has gcc 4.8, so yes
> we should be testing it with gcc 4.8...
Here is the first build failure with gcc 4.8:
http://autobuild.buildroot.org/results/9e7/9e7868be00f2cd18205b2ce664be95f8b9e2b063/build-end.log
>
>   Regards,
>   Arnout
Best Regards,

Fabrice
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Buildroot] [PATCH v2, 1/1] package/file: fix build with gcc 4.8
  2022-01-04 20:54 [Buildroot] [PATCH v2,1/1] package/file: fix build with gcc 4.8 Fabrice Fontaine
  2022-01-07 18:08 ` [Buildroot] [PATCH v2, 1/1] " Thomas Petazzoni
  2022-01-08 10:51 ` Thomas Petazzoni
@ 2022-01-08 22:04 ` Yann E. MORIN
  2 siblings, 0 replies; 10+ messages in thread
From: Yann E. MORIN @ 2022-01-08 22:04 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: buildroot

Fabrice, All,

On 2022-01-04 21:54 +0100, Fabrice Fontaine spake thusly:
> Fix the following build failure raised since bump to version 5.41 in
> commit d38b72bcd75392a88b5100839ac410859d0a6a79:
> 
> readelf.c: In function 'do_auxv_note':
> readelf.c:1046:2: error: 'for' loop initial declarations are only allowed in C99 mode
>   for (size_t off = 0; off + elsize <= descsz; off += elsize) {
>   ^
> 
> Fixes:
>  - http://autobuild.buildroot.org/results/31cbc313fceb84c0cbb1969fca5ac44244871dbc

It turned out that all that was needed is to tun autoreconf. See the
commti for the explanations:
    https://git.buildroot.org/buildroot/commit/package/file/file.mk?id=590d89fdad50f48c120b91ac008cc2ea4b625e15

Thanks!

Regards,
Yann E. MORIN.

> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
> Changes v1 -> v2 (after review of Yann E. Morin):
>  - Set ac_cv_prog_c99 for host as already done for target instead of
>    adding an upstreamable patch
> 
>  package/file/file.mk | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/package/file/file.mk b/package/file/file.mk
> index 12647af8bb..62cec4b2c9 100644
> --- a/package/file/file.mk
> +++ b/package/file/file.mk
> @@ -9,6 +9,7 @@ FILE_SITE = ftp://ftp.astron.com/pub/file
>  FILE_DEPENDENCIES = host-file
>  HOST_FILE_DEPENDENCIES = host-zlib
>  FILE_CONF_ENV = ac_cv_prog_cc_c99='-std=gnu99'
> +HOST_FILE_CONF_ENV = ac_cv_prog_cc_c99='-std=gnu99'
>  FILE_INSTALL_STAGING = YES
>  FILE_LICENSE = BSD-2-Clause, BSD-4-Clause (one file), BSD-3-Clause (one file)
>  FILE_LICENSE_FILES = COPYING src/mygetopt.h src/vasprintf.c
> -- 
> 2.34.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2022-01-08 22:04 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-04 20:54 [Buildroot] [PATCH v2,1/1] package/file: fix build with gcc 4.8 Fabrice Fontaine
2022-01-07 18:08 ` [Buildroot] [PATCH v2, 1/1] " Thomas Petazzoni
2022-01-08 10:51 ` Thomas Petazzoni
2022-01-08 16:13   ` Fabrice Fontaine
2022-01-08 17:39     ` Peter Seiderer
2022-01-08 18:38       ` Thomas Petazzoni
2022-01-08 18:46         ` Fabrice Fontaine
2022-01-08 18:50         ` Arnout Vandecappelle
2022-01-08 20:41           ` Fabrice Fontaine
2022-01-08 22:04 ` Yann E. MORIN

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.