All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH/next 1/1] package/libffi: fix build failure with powerpc7
@ 2019-11-24  9:03 Fabrice Fontaine
  2019-11-24 19:28 ` Yann E. MORIN
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Fabrice Fontaine @ 2019-11-24  9:03 UTC (permalink / raw)
  To: buildroot

Fixes:
 - http://autobuild.buildroot.org/results/5c9dd8fb3b6a128882b6250f197c80232d8a3b53

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 ...pc.h-fix-build-failure-with-powerpc7.patch | 51 +++++++++++++++++++
 1 file changed, 51 insertions(+)
 create mode 100644 package/libffi/0004-ffi_powerpc.h-fix-build-failure-with-powerpc7.patch

diff --git a/package/libffi/0004-ffi_powerpc.h-fix-build-failure-with-powerpc7.patch b/package/libffi/0004-ffi_powerpc.h-fix-build-failure-with-powerpc7.patch
new file mode 100644
index 0000000000..7ee1f1029e
--- /dev/null
+++ b/package/libffi/0004-ffi_powerpc.h-fix-build-failure-with-powerpc7.patch
@@ -0,0 +1,51 @@
+From f9d8f11d60cdc656a801e0d8116101beb22e117b Mon Sep 17 00:00:00 2001
+From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
+Date: Sun, 24 Nov 2019 09:52:01 +0100
+Subject: [PATCH] ffi_powerpc.h: fix build failure with powerpc7
+
+Sicne commit 73dd43afc8a447ba98ea02e9aad4c6898dc77fb0, build on powerpc7
+fails on:
+
+In file included from ../src/powerpc/ffi.c:33:0:
+../src/powerpc/ffi_powerpc.h:61:9: error: '_Float128' is not supported on this target
+ typedef _Float128 float128;
+         ^~~~~~~~~
+
+Fix this build failure by checking for __HAVE_FLOAT128 before using
+_Float128, as _Float128 is enabled only on specific conditions, see
+output/host/powerpc64-buildroot-linux-gnu/sysroot/usr/include/bits/floatn.h:
+
+ /* Defined to 1 if the current compiler invocation provides a
+    floating-point type with the IEEE 754 binary128 format, and this glibc
+    includes corresponding *f128 interfaces for it.  */
+ #if defined _ARCH_PWR8 && defined __LITTLE_ENDIAN__ && (_CALL_ELF == 2) \
+     && defined __FLOAT128__ && !defined __NO_LONG_DOUBLE_MATH
+ # define __HAVE_FLOAT128 1
+ #else
+ # define __HAVE_FLOAT128 0
+ #endif
+
+Fixes:
+ - http://autobuild.buildroot.org/results/5c9dd8fb3b6a128882b6250f197c80232d8a3b53
+
+Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
+---
+ src/powerpc/ffi_powerpc.h | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/powerpc/ffi_powerpc.h b/src/powerpc/ffi_powerpc.h
+index 5ee2a70..a5a786b 100644
+--- a/src/powerpc/ffi_powerpc.h
++++ b/src/powerpc/ffi_powerpc.h
+@@ -57,7 +57,7 @@ typedef union
+   double d;
+ } ffi_dblfl;
+ 
+-#if defined(__FLOAT128_TYPE__)
++#if defined(__FLOAT128_TYPE__) && defined(__HAVE_FLOAT128)
+ typedef _Float128 float128;
+ #elif defined(__FLOAT128__)
+ typedef __float128 float128;
+-- 
+2.24.0
+
-- 
2.24.0

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

* [Buildroot] [PATCH/next 1/1] package/libffi: fix build failure with powerpc7
  2019-11-24  9:03 [Buildroot] [PATCH/next 1/1] package/libffi: fix build failure with powerpc7 Fabrice Fontaine
@ 2019-11-24 19:28 ` Yann E. MORIN
  2019-11-24 19:57   ` Fabrice Fontaine
  2019-12-03 22:53 ` Arnout Vandecappelle
  2019-12-23 20:22 ` Thomas Petazzoni
  2 siblings, 1 reply; 7+ messages in thread
From: Yann E. MORIN @ 2019-11-24 19:28 UTC (permalink / raw)
  To: buildroot

Fabrice, All,

On 2019-11-24 10:03 +0100, Fabrice Fontaine spake thusly:
> Fixes:
>  - http://autobuild.buildroot.org/results/5c9dd8fb3b6a128882b6250f197c80232d8a3b53

Will that patch still be needed on the 3.3 version, that was applied to
next? Does that build failure still hapen with version 3.3 on next?

Regards,
Yann E. MORIN.

> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  ...pc.h-fix-build-failure-with-powerpc7.patch | 51 +++++++++++++++++++
>  1 file changed, 51 insertions(+)
>  create mode 100644 package/libffi/0004-ffi_powerpc.h-fix-build-failure-with-powerpc7.patch
> 
> diff --git a/package/libffi/0004-ffi_powerpc.h-fix-build-failure-with-powerpc7.patch b/package/libffi/0004-ffi_powerpc.h-fix-build-failure-with-powerpc7.patch
> new file mode 100644
> index 0000000000..7ee1f1029e
> --- /dev/null
> +++ b/package/libffi/0004-ffi_powerpc.h-fix-build-failure-with-powerpc7.patch
> @@ -0,0 +1,51 @@
> +From f9d8f11d60cdc656a801e0d8116101beb22e117b Mon Sep 17 00:00:00 2001
> +From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> +Date: Sun, 24 Nov 2019 09:52:01 +0100
> +Subject: [PATCH] ffi_powerpc.h: fix build failure with powerpc7
> +
> +Sicne commit 73dd43afc8a447ba98ea02e9aad4c6898dc77fb0, build on powerpc7
> +fails on:
> +
> +In file included from ../src/powerpc/ffi.c:33:0:
> +../src/powerpc/ffi_powerpc.h:61:9: error: '_Float128' is not supported on this target
> + typedef _Float128 float128;
> +         ^~~~~~~~~
> +
> +Fix this build failure by checking for __HAVE_FLOAT128 before using
> +_Float128, as _Float128 is enabled only on specific conditions, see
> +output/host/powerpc64-buildroot-linux-gnu/sysroot/usr/include/bits/floatn.h:
> +
> + /* Defined to 1 if the current compiler invocation provides a
> +    floating-point type with the IEEE 754 binary128 format, and this glibc
> +    includes corresponding *f128 interfaces for it.  */
> + #if defined _ARCH_PWR8 && defined __LITTLE_ENDIAN__ && (_CALL_ELF == 2) \
> +     && defined __FLOAT128__ && !defined __NO_LONG_DOUBLE_MATH
> + # define __HAVE_FLOAT128 1
> + #else
> + # define __HAVE_FLOAT128 0
> + #endif
> +
> +Fixes:
> + - http://autobuild.buildroot.org/results/5c9dd8fb3b6a128882b6250f197c80232d8a3b53
> +
> +Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> +---
> + src/powerpc/ffi_powerpc.h | 2 +-
> + 1 file changed, 1 insertion(+), 1 deletion(-)
> +
> +diff --git a/src/powerpc/ffi_powerpc.h b/src/powerpc/ffi_powerpc.h
> +index 5ee2a70..a5a786b 100644
> +--- a/src/powerpc/ffi_powerpc.h
> ++++ b/src/powerpc/ffi_powerpc.h
> +@@ -57,7 +57,7 @@ typedef union
> +   double d;
> + } ffi_dblfl;
> + 
> +-#if defined(__FLOAT128_TYPE__)
> ++#if defined(__FLOAT128_TYPE__) && defined(__HAVE_FLOAT128)
> + typedef _Float128 float128;
> + #elif defined(__FLOAT128__)
> + typedef __float128 float128;
> +-- 
> +2.24.0
> +
> -- 
> 2.24.0
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/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.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH/next 1/1] package/libffi: fix build failure with powerpc7
  2019-11-24 19:28 ` Yann E. MORIN
@ 2019-11-24 19:57   ` Fabrice Fontaine
  0 siblings, 0 replies; 7+ messages in thread
From: Fabrice Fontaine @ 2019-11-24 19:57 UTC (permalink / raw)
  To: buildroot

Yann,

Le dim. 24 nov. 2019 ? 20:45, Yann E. MORIN <yann.morin.1998@free.fr> a ?crit :
>
> Fabrice, All,
>
> On 2019-11-24 10:03 +0100, Fabrice Fontaine spake thusly:
> > Fixes:
> >  - http://autobuild.buildroot.org/results/5c9dd8fb3b6a128882b6250f197c80232d8a3b53
>
> Will that patch still be needed on the 3.3 version, that was applied to
> next? Does that build failure still hapen with version 3.3 on next?
This patch is only for 3.3 version so it should be apply only on next.
Build failure is raised by
https://github.com/libffi/libffi/commit/73dd43afc8a447ba98ea02e9aad4c6898dc77fb0
(as stated in patch).
I'll send it upstream if you don't have any remarks in it.
>
> Regards,
> Yann E. MORIN.
>
> > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> > ---
> >  ...pc.h-fix-build-failure-with-powerpc7.patch | 51 +++++++++++++++++++
> >  1 file changed, 51 insertions(+)
> >  create mode 100644 package/libffi/0004-ffi_powerpc.h-fix-build-failure-with-powerpc7.patch
> >
> > diff --git a/package/libffi/0004-ffi_powerpc.h-fix-build-failure-with-powerpc7.patch b/package/libffi/0004-ffi_powerpc.h-fix-build-failure-with-powerpc7.patch
> > new file mode 100644
> > index 0000000000..7ee1f1029e
> > --- /dev/null
> > +++ b/package/libffi/0004-ffi_powerpc.h-fix-build-failure-with-powerpc7.patch
> > @@ -0,0 +1,51 @@
> > +From f9d8f11d60cdc656a801e0d8116101beb22e117b Mon Sep 17 00:00:00 2001
> > +From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> > +Date: Sun, 24 Nov 2019 09:52:01 +0100
> > +Subject: [PATCH] ffi_powerpc.h: fix build failure with powerpc7
> > +
> > +Sicne commit 73dd43afc8a447ba98ea02e9aad4c6898dc77fb0, build on powerpc7
> > +fails on:
> > +
> > +In file included from ../src/powerpc/ffi.c:33:0:
> > +../src/powerpc/ffi_powerpc.h:61:9: error: '_Float128' is not supported on this target
> > + typedef _Float128 float128;
> > +         ^~~~~~~~~
> > +
> > +Fix this build failure by checking for __HAVE_FLOAT128 before using
> > +_Float128, as _Float128 is enabled only on specific conditions, see
> > +output/host/powerpc64-buildroot-linux-gnu/sysroot/usr/include/bits/floatn.h:
> > +
> > + /* Defined to 1 if the current compiler invocation provides a
> > +    floating-point type with the IEEE 754 binary128 format, and this glibc
> > +    includes corresponding *f128 interfaces for it.  */
> > + #if defined _ARCH_PWR8 && defined __LITTLE_ENDIAN__ && (_CALL_ELF == 2) \
> > +     && defined __FLOAT128__ && !defined __NO_LONG_DOUBLE_MATH
> > + # define __HAVE_FLOAT128 1
> > + #else
> > + # define __HAVE_FLOAT128 0
> > + #endif
> > +
> > +Fixes:
> > + - http://autobuild.buildroot.org/results/5c9dd8fb3b6a128882b6250f197c80232d8a3b53
> > +
> > +Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> > +---
> > + src/powerpc/ffi_powerpc.h | 2 +-
> > + 1 file changed, 1 insertion(+), 1 deletion(-)
> > +
> > +diff --git a/src/powerpc/ffi_powerpc.h b/src/powerpc/ffi_powerpc.h
> > +index 5ee2a70..a5a786b 100644
> > +--- a/src/powerpc/ffi_powerpc.h
> > ++++ b/src/powerpc/ffi_powerpc.h
> > +@@ -57,7 +57,7 @@ typedef union
> > +   double d;
> > + } ffi_dblfl;
> > +
> > +-#if defined(__FLOAT128_TYPE__)
> > ++#if defined(__FLOAT128_TYPE__) && defined(__HAVE_FLOAT128)
> > + typedef _Float128 float128;
> > + #elif defined(__FLOAT128__)
> > + typedef __float128 float128;
> > +--
> > +2.24.0
> > +
> > --
> > 2.24.0
> >
> > _______________________________________________
> > buildroot mailing list
> > buildroot at busybox.net
> > http://lists.busybox.net/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.  |
> '------------------------------^-------^------------------^--------------------'
Best Regards,

Fabrice

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

* [Buildroot] [PATCH/next 1/1] package/libffi: fix build failure with powerpc7
  2019-11-24  9:03 [Buildroot] [PATCH/next 1/1] package/libffi: fix build failure with powerpc7 Fabrice Fontaine
  2019-11-24 19:28 ` Yann E. MORIN
@ 2019-12-03 22:53 ` Arnout Vandecappelle
  2019-12-10 22:18   ` Thomas Petazzoni
  2019-12-23 20:22 ` Thomas Petazzoni
  2 siblings, 1 reply; 7+ messages in thread
From: Arnout Vandecappelle @ 2019-12-03 22:53 UTC (permalink / raw)
  To: buildroot



On 24/11/2019 10:03, Fabrice Fontaine wrote:
> Fixes:
>  - http://autobuild.buildroot.org/results/5c9dd8fb3b6a128882b6250f197c80232d8a3b53
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

 Upstream merged a different fix [1] which TBH doesn't look as good... Could you
check with upstream what is the better solution?

 Regards,
 Arnout

[1]
https://github.com/libffi/libffi/pull/532/commits/2138adb2a5b6a0bc2fe3518e0645eacc89b6f392


> ---
>  ...pc.h-fix-build-failure-with-powerpc7.patch | 51 +++++++++++++++++++
>  1 file changed, 51 insertions(+)
>  create mode 100644 package/libffi/0004-ffi_powerpc.h-fix-build-failure-with-powerpc7.patch
> 
> diff --git a/package/libffi/0004-ffi_powerpc.h-fix-build-failure-with-powerpc7.patch b/package/libffi/0004-ffi_powerpc.h-fix-build-failure-with-powerpc7.patch
> new file mode 100644
> index 0000000000..7ee1f1029e
> --- /dev/null
> +++ b/package/libffi/0004-ffi_powerpc.h-fix-build-failure-with-powerpc7.patch
> @@ -0,0 +1,51 @@
> +From f9d8f11d60cdc656a801e0d8116101beb22e117b Mon Sep 17 00:00:00 2001
> +From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> +Date: Sun, 24 Nov 2019 09:52:01 +0100
> +Subject: [PATCH] ffi_powerpc.h: fix build failure with powerpc7
> +
> +Sicne commit 73dd43afc8a447ba98ea02e9aad4c6898dc77fb0, build on powerpc7
> +fails on:
> +
> +In file included from ../src/powerpc/ffi.c:33:0:
> +../src/powerpc/ffi_powerpc.h:61:9: error: '_Float128' is not supported on this target
> + typedef _Float128 float128;
> +         ^~~~~~~~~
> +
> +Fix this build failure by checking for __HAVE_FLOAT128 before using
> +_Float128, as _Float128 is enabled only on specific conditions, see
> +output/host/powerpc64-buildroot-linux-gnu/sysroot/usr/include/bits/floatn.h:
> +
> + /* Defined to 1 if the current compiler invocation provides a
> +    floating-point type with the IEEE 754 binary128 format, and this glibc
> +    includes corresponding *f128 interfaces for it.  */
> + #if defined _ARCH_PWR8 && defined __LITTLE_ENDIAN__ && (_CALL_ELF == 2) \
> +     && defined __FLOAT128__ && !defined __NO_LONG_DOUBLE_MATH
> + # define __HAVE_FLOAT128 1
> + #else
> + # define __HAVE_FLOAT128 0
> + #endif
> +
> +Fixes:
> + - http://autobuild.buildroot.org/results/5c9dd8fb3b6a128882b6250f197c80232d8a3b53
> +
> +Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> +---
> + src/powerpc/ffi_powerpc.h | 2 +-
> + 1 file changed, 1 insertion(+), 1 deletion(-)
> +
> +diff --git a/src/powerpc/ffi_powerpc.h b/src/powerpc/ffi_powerpc.h
> +index 5ee2a70..a5a786b 100644
> +--- a/src/powerpc/ffi_powerpc.h
> ++++ b/src/powerpc/ffi_powerpc.h
> +@@ -57,7 +57,7 @@ typedef union
> +   double d;
> + } ffi_dblfl;
> + 
> +-#if defined(__FLOAT128_TYPE__)
> ++#if defined(__FLOAT128_TYPE__) && defined(__HAVE_FLOAT128)
> + typedef _Float128 float128;
> + #elif defined(__FLOAT128__)
> + typedef __float128 float128;
> +-- 
> +2.24.0
> +
> 

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

* [Buildroot] [PATCH/next 1/1] package/libffi: fix build failure with powerpc7
  2019-12-03 22:53 ` Arnout Vandecappelle
@ 2019-12-10 22:18   ` Thomas Petazzoni
  2019-12-11  7:57     ` Fabrice Fontaine
  0 siblings, 1 reply; 7+ messages in thread
From: Thomas Petazzoni @ 2019-12-10 22:18 UTC (permalink / raw)
  To: buildroot

Hello Fabrice,

On Tue, 3 Dec 2019 23:53:06 +0100
Arnout Vandecappelle <arnout@mind.be> wrote:

> On 24/11/2019 10:03, Fabrice Fontaine wrote:
> > Fixes:
> >  - http://autobuild.buildroot.org/results/5c9dd8fb3b6a128882b6250f197c80232d8a3b53
> > 
> > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>  
> 
>  Upstream merged a different fix [1] which TBH doesn't look as good... Could you
> check with upstream what is the better solution?
> 
>  Regards,
>  Arnout
> 
> [1]
> https://github.com/libffi/libffi/pull/532/commits/2138adb2a5b6a0bc2fe3518e0645eacc89b6f392

Fabrice, have you had the chance to check with upstream what is the
most correct fix?

Also, your commit title says it fixes it for powerpc7, but the issue
also appears with older powerpc platforms, and indeed the upstream
commit says it fixes the issue for powerpc7 and older platforms.

Since the issue pops up quite a lot in the autobuilders, it would be
nice if we could finalize this patch and merge it.

Thanks,

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* [Buildroot] [PATCH/next 1/1] package/libffi: fix build failure with powerpc7
  2019-12-10 22:18   ` Thomas Petazzoni
@ 2019-12-11  7:57     ` Fabrice Fontaine
  0 siblings, 0 replies; 7+ messages in thread
From: Fabrice Fontaine @ 2019-12-11  7:57 UTC (permalink / raw)
  To: buildroot

Hello Thomas,

Le mar. 10 d?c. 2019 ? 23:18, Thomas Petazzoni
<thomas.petazzoni@bootlin.com> a ?crit :
>
> Hello Fabrice,
>
> On Tue, 3 Dec 2019 23:53:06 +0100
> Arnout Vandecappelle <arnout@mind.be> wrote:
>
> > On 24/11/2019 10:03, Fabrice Fontaine wrote:
> > > Fixes:
> > >  - http://autobuild.buildroot.org/results/5c9dd8fb3b6a128882b6250f197c80232d8a3b53
> > >
> > > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> >
> >  Upstream merged a different fix [1] which TBH doesn't look as good... Could you
> > check with upstream what is the better solution?
> >
> >  Regards,
> >  Arnout
> >
> > [1]
> > https://github.com/libffi/libffi/pull/532/commits/2138adb2a5b6a0bc2fe3518e0645eacc89b6f392
>
> Fabrice, have you had the chance to check with upstream what is the
> most correct fix?
I only checked if this upstream commit fix our build failure and the
answer is no.
This is not a surprise as our build failure is related to _Float128
being undefined and this commit fixes a build failure related to
__int128 being undefined.
So there is probably two distinct issues on powerpc.

However, I didn't contact upstream yet and I don't know if I want to
waste my time doing so.
Indeed, I sent them a PR one year ago to upstream one of our patch
(https://github.com/libffi/libffi/pull/448). This PR didn't get a
single comment ...
>
> Also, your commit title says it fixes it for powerpc7, but the issue
> also appears with older powerpc platforms, and indeed the upstream
> commit says it fixes the issue for powerpc7 and older platforms.
>
> Since the issue pops up quite a lot in the autobuilders, it would be
> nice if we could finalize this patch and merge it.
>
> Thanks,
>
> Thomas
> --
> Thomas Petazzoni, CTO, Bootlin
> Embedded Linux and Kernel engineering
> https://bootlin.com
Best Regards,

Fabrice

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

* [Buildroot] [PATCH/next 1/1] package/libffi: fix build failure with powerpc7
  2019-11-24  9:03 [Buildroot] [PATCH/next 1/1] package/libffi: fix build failure with powerpc7 Fabrice Fontaine
  2019-11-24 19:28 ` Yann E. MORIN
  2019-12-03 22:53 ` Arnout Vandecappelle
@ 2019-12-23 20:22 ` Thomas Petazzoni
  2 siblings, 0 replies; 7+ messages in thread
From: Thomas Petazzoni @ 2019-12-23 20:22 UTC (permalink / raw)
  To: buildroot

On Sun, 24 Nov 2019 10:03:05 +0100
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> Fixes:
>  - http://autobuild.buildroot.org/results/5c9dd8fb3b6a128882b6250f197c80232d8a3b53
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  ...pc.h-fix-build-failure-with-powerpc7.patch | 51 +++++++++++++++++++
>  1 file changed, 51 insertions(+)
>  create mode 100644 package/libffi/0004-ffi_powerpc.h-fix-build-failure-with-powerpc7.patch

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

end of thread, other threads:[~2019-12-23 20:22 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-24  9:03 [Buildroot] [PATCH/next 1/1] package/libffi: fix build failure with powerpc7 Fabrice Fontaine
2019-11-24 19:28 ` Yann E. MORIN
2019-11-24 19:57   ` Fabrice Fontaine
2019-12-03 22:53 ` Arnout Vandecappelle
2019-12-10 22:18   ` Thomas Petazzoni
2019-12-11  7:57     ` Fabrice Fontaine
2019-12-23 20:22 ` Thomas Petazzoni

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.