All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v1] package/gdb: fix gdb-10.2 compile for uclibc < v1.0.35 (getrandom related)
@ 2021-11-06  9:15 Peter Seiderer
  2021-11-06 10:50 ` Thomas Petazzoni
  2021-11-09  9:47 ` Peter Korsgaard
  0 siblings, 2 replies; 4+ messages in thread
From: Peter Seiderer @ 2021-11-06  9:15 UTC (permalink / raw)
  To: buildroot

- fix getrandom compile for uclibc < v1.0.35, add missing stddef.h
  include (fixed in uclibc since v1.0.35, see [1])

Fixes:

  - http://autobuild.buildroot.net/results/6d4a62c703c85dd993ddb2d90ebe1f6cad24e0b0

  .../host/x86_64-buildroot-linux-uclibc/sysroot/usr/include/sys/random.h:27:35: error: unknown type name ‘size_t’
     27 | extern int getrandom(void *__buf, size_t count, unsigned int flags)
        |                                   ^~~~~~

[1] https://cgit.uclibc-ng.org/cgi/cgit/uclibc-ng.git/commit/?id=00972c02c2b6e0a95d5def4a71bdfb188e091782t

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
---
 ...getrandom-compile-for-uclibc-v1.0.35.patch | 39 +++++++++++++++++++
 1 file changed, 39 insertions(+)
 create mode 100644 package/gdb/10.2/0006-Fix-getrandom-compile-for-uclibc-v1.0.35.patch

diff --git a/package/gdb/10.2/0006-Fix-getrandom-compile-for-uclibc-v1.0.35.patch b/package/gdb/10.2/0006-Fix-getrandom-compile-for-uclibc-v1.0.35.patch
new file mode 100644
index 0000000000..4b212e2d03
--- /dev/null
+++ b/package/gdb/10.2/0006-Fix-getrandom-compile-for-uclibc-v1.0.35.patch
@@ -0,0 +1,39 @@
+From bb894a9cfb1c3cf0e0a174c496ad848f589ee7da Mon Sep 17 00:00:00 2001
+From: Peter Seiderer <ps.report@gmx.net>
+Date: Sat, 6 Nov 2021 10:06:25 +0100
+Subject: [PATCH] Fix getrandom compile for uclibc < v1.0.35
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+- fix getrandom compile for uclibc < v1.0.35, add missing stddef.h
+  include (fixed in uclibc since v1.0.35, see [1])
+
+Fixes:
+
+  .../host/x86_64-buildroot-linux-uclibc/sysroot/usr/include/sys/random.h:27:35: error: unknown type name ‘size_t’
+     27 | extern int getrandom(void *__buf, size_t count, unsigned int flags)
+        |                                   ^~~~~~
+
+[1] https://cgit.uclibc-ng.org/cgi/cgit/uclibc-ng.git/commit/?id=00972c02c2b6e0a95d5def4a71bdfb188e091782t
+
+Signed-off-by: Peter Seiderer <ps.report@gmx.net>
+---
+ gnulib/import/getrandom.c | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/gnulib/import/getrandom.c b/gnulib/import/getrandom.c
+index 030a78b..7b24350 100644
+--- a/gnulib/import/getrandom.c
++++ b/gnulib/import/getrandom.c
+@@ -19,6 +19,7 @@
+ 
+ #include <config.h>
+ 
++#include <stddef.h>
+ #include <sys/random.h>
+ 
+ #include <errno.h>
+-- 
+2.33.1
+
-- 
2.33.1

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

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

* Re: [Buildroot] [PATCH v1] package/gdb: fix gdb-10.2 compile for uclibc < v1.0.35 (getrandom related)
  2021-11-06  9:15 [Buildroot] [PATCH v1] package/gdb: fix gdb-10.2 compile for uclibc < v1.0.35 (getrandom related) Peter Seiderer
@ 2021-11-06 10:50 ` Thomas Petazzoni
  2021-11-06 11:30   ` Peter Seiderer
  2021-11-09  9:47 ` Peter Korsgaard
  1 sibling, 1 reply; 4+ messages in thread
From: Thomas Petazzoni @ 2021-11-06 10:50 UTC (permalink / raw)
  To: Peter Seiderer; +Cc: buildroot

On Sat,  6 Nov 2021 10:15:08 +0100
Peter Seiderer <ps.report@gmx.net> wrote:

> - fix getrandom compile for uclibc < v1.0.35, add missing stddef.h
>   include (fixed in uclibc since v1.0.35, see [1])
> 
> Fixes:
> 
>   - http://autobuild.buildroot.net/results/6d4a62c703c85dd993ddb2d90ebe1f6cad24e0b0
> 
>   .../host/x86_64-buildroot-linux-uclibc/sysroot/usr/include/sys/random.h:27:35: error: unknown type name ‘size_t’
>      27 | extern int getrandom(void *__buf, size_t count, unsigned int flags)
>         |                                   ^~~~~~
> 
> [1] https://cgit.uclibc-ng.org/cgi/cgit/uclibc-ng.git/commit/?id=00972c02c2b6e0a95d5def4a71bdfb188e091782t
> 
> Signed-off-by: Peter Seiderer <ps.report@gmx.net>
> ---
>  ...getrandom-compile-for-uclibc-v1.0.35.patch | 39 +++++++++++++++++++
>  1 file changed, 39 insertions(+)
>  create mode 100644 package/gdb/10.2/0006-Fix-getrandom-compile-for-uclibc-v1.0.35.patch

Applied to master, thanks. Did you verify that this was only applicable
to gdb 10.x, and none of the older or newer versions ?

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] 4+ messages in thread

* Re: [Buildroot] [PATCH v1] package/gdb: fix gdb-10.2 compile for uclibc < v1.0.35 (getrandom related)
  2021-11-06 10:50 ` Thomas Petazzoni
@ 2021-11-06 11:30   ` Peter Seiderer
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Seiderer @ 2021-11-06 11:30 UTC (permalink / raw)
  To: Thomas Petazzoni; +Cc: buildroot

Hello Thomas,

On Sat, 6 Nov 2021 11:50:27 +0100, Thomas Petazzoni <thomas.petazzoni@bootlin.com> wrote:

> On Sat,  6 Nov 2021 10:15:08 +0100
> Peter Seiderer <ps.report@gmx.net> wrote:
> 
> > - fix getrandom compile for uclibc < v1.0.35, add missing stddef.h
> >   include (fixed in uclibc since v1.0.35, see [1])
> > 
> > Fixes:
> > 
> >   - http://autobuild.buildroot.net/results/6d4a62c703c85dd993ddb2d90ebe1f6cad24e0b0
> > 
> >   .../host/x86_64-buildroot-linux-uclibc/sysroot/usr/include/sys/random.h:27:35: error: unknown type name ‘size_t’
> >      27 | extern int getrandom(void *__buf, size_t count, unsigned int flags)
> >         |                                   ^~~~~~
> > 
> > [1] https://cgit.uclibc-ng.org/cgi/cgit/uclibc-ng.git/commit/?id=00972c02c2b6e0a95d5def4a71bdfb188e091782t
> > 
> > Signed-off-by: Peter Seiderer <ps.report@gmx.net>
> > ---
> >  ...getrandom-compile-for-uclibc-v1.0.35.patch | 39 +++++++++++++++++++
> >  1 file changed, 39 insertions(+)
> >  create mode 100644 package/gdb/10.2/0006-Fix-getrandom-compile-for-uclibc-v1.0.35.patch  
> 
> Applied to master, thanks. Did you verify that this was only applicable
> to gdb 10.x, and none of the older or newer versions ?

Just now..., gdb-9.2 seems not affected, gdb-11.1 shows the same failure, patch follows...

Regards,
Peter

> 
> Thanks!
> 
> Thomas

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

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

* Re: [Buildroot] [PATCH v1] package/gdb: fix gdb-10.2 compile for uclibc < v1.0.35 (getrandom related)
  2021-11-06  9:15 [Buildroot] [PATCH v1] package/gdb: fix gdb-10.2 compile for uclibc < v1.0.35 (getrandom related) Peter Seiderer
  2021-11-06 10:50 ` Thomas Petazzoni
@ 2021-11-09  9:47 ` Peter Korsgaard
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2021-11-09  9:47 UTC (permalink / raw)
  To: Peter Seiderer; +Cc: buildroot

>>>>> "Peter" == Peter Seiderer <ps.report@gmx.net> writes:

 > - fix getrandom compile for uclibc < v1.0.35, add missing stddef.h
 >   include (fixed in uclibc since v1.0.35, see [1])

 > Fixes:

 >   - http://autobuild.buildroot.net/results/6d4a62c703c85dd993ddb2d90ebe1f6cad24e0b0

 >   .../host/x86_64-buildroot-linux-uclibc/sysroot/usr/include/sys/random.h:27:35: error: unknown type name ‘size_t’
 >      27 | extern int getrandom(void *__buf, size_t count, unsigned int flags)
 >         |                                   ^~~~~~

 > [1] https://cgit.uclibc-ng.org/cgi/cgit/uclibc-ng.git/commit/?id=00972c02c2b6e0a95d5def4a71bdfb188e091782t

 > Signed-off-by: Peter Seiderer <ps.report@gmx.net>

Committed to 2021.02.x and 2021.08.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2021-11-09  9:48 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-06  9:15 [Buildroot] [PATCH v1] package/gdb: fix gdb-10.2 compile for uclibc < v1.0.35 (getrandom related) Peter Seiderer
2021-11-06 10:50 ` Thomas Petazzoni
2021-11-06 11:30   ` Peter Seiderer
2021-11-09  9:47 ` Peter Korsgaard

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.